fix(API): return 200 for PUT method
This commit is contained in:
parent
2738815af9
commit
139712fc94
|
@ -98,7 +98,7 @@ config(delete, Req) ->
|
||||||
config(put, Req) ->
|
config(put, Req) ->
|
||||||
Path = [binary_to_atom(Key, latin1) || Key <- conf_path_from_querystr(Req)],
|
Path = [binary_to_atom(Key, latin1) || Key <- conf_path_from_querystr(Req)],
|
||||||
ok = emqx_config:update(Path, http_body(Req)),
|
ok = emqx_config:update(Path, http_body(Req)),
|
||||||
{201, emqx_config:get_raw(Path)}.
|
{200, emqx_config:get_raw(Path)}.
|
||||||
|
|
||||||
conf_path_from_querystr(Req) ->
|
conf_path_from_querystr(Req) ->
|
||||||
case proplists:get_value(<<"conf_path">>, cowboy_req:parse_qs(Req)) of
|
case proplists:get_value(<<"conf_path">>, cowboy_req:parse_qs(Req)) of
|
||||||
|
|
Loading…
Reference in New Issue