fix: authz default should be a map
This commit is contained in:
parent
d39fafbed2
commit
7e48a4e6f5
|
@ -164,7 +164,7 @@ headers(converter) ->
|
||||||
fun(Headers) ->
|
fun(Headers) ->
|
||||||
maps:to_list(maps:merge(default_headers(), transform_header_name(Headers)))
|
maps:to_list(maps:merge(default_headers(), transform_header_name(Headers)))
|
||||||
end;
|
end;
|
||||||
headers(default) -> maps:to_list(default_headers());
|
headers(default) -> default_headers();
|
||||||
headers(_) -> undefined.
|
headers(_) -> undefined.
|
||||||
|
|
||||||
headers_no_content_type(type) -> list({binary(), binary()});
|
headers_no_content_type(type) -> list({binary(), binary()});
|
||||||
|
@ -172,7 +172,7 @@ headers_no_content_type(converter) ->
|
||||||
fun(Headers) ->
|
fun(Headers) ->
|
||||||
maps:to_list(maps:merge(default_headers_no_content_type(), transform_header_name(Headers)))
|
maps:to_list(maps:merge(default_headers_no_content_type(), transform_header_name(Headers)))
|
||||||
end;
|
end;
|
||||||
headers_no_content_type(default) -> maps:to_list(default_headers_no_content_type());
|
headers_no_content_type(default) -> default_headers_no_content_type();
|
||||||
headers_no_content_type(_) -> undefined.
|
headers_no_content_type(_) -> undefined.
|
||||||
|
|
||||||
url(type) -> binary();
|
url(type) -> binary();
|
||||||
|
|
Loading…
Reference in New Issue