0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00

Fix rest_pastebin example

Bring the rest_pastebin example in line with REST API changes for
creating resources.
This commit is contained in:
Adam Cammack 2013-04-12 12:23:33 -05:00
parent b58a0549e1
commit 4e29a49472

View file

@ -46,12 +46,12 @@ resource_exists(Req, _State) ->
end.
create_paste(Req, State) ->
{<<$/, PasteID/binary>>, Req2} = cowboy_req:meta(put_path, Req),
{ok, [{<<"paste">>, Paste}], Req3} = cowboy_req:body_qs(Req2),
PasteID = new_paste_id(),
{ok, [{<<"paste">>, Paste}], Req3} = cowboy_req:body_qs(Req),
ok = file:write_file(full_path(PasteID), Paste),
case cowboy_req:method(Req3) of
{<<"POST">>, Req4} ->
{<<$/, (new_paste_id())/binary>>, Req4, State};
{<<$/, PasteID/binary>>, Req4, State};
{_, Req4} ->
{true, Req4, State}
end.