diff options
author | Adam Cammack <[email protected]> | 2013-04-12 12:23:33 -0500 |
---|---|---|
committer | Adam Cammack <[email protected]> | 2013-04-12 12:23:33 -0500 |
commit | 4e29a4947283033ac08835387fd5d98b8aee85a4 (patch) | |
tree | 2841b6812cbc9d3252c310e01779eebad3c3c7dc /examples/rest_pastebin/src | |
parent | b58a0549e139b410db50ddd443cc457fb677fa7e (diff) | |
download | cowboy-4e29a4947283033ac08835387fd5d98b8aee85a4.tar.gz cowboy-4e29a4947283033ac08835387fd5d98b8aee85a4.tar.bz2 cowboy-4e29a4947283033ac08835387fd5d98b8aee85a4.zip |
Fix rest_pastebin example
Bring the rest_pastebin example in line with REST API changes for
creating resources.
Diffstat (limited to 'examples/rest_pastebin/src')
-rw-r--r-- | examples/rest_pastebin/src/toppage_handler.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/rest_pastebin/src/toppage_handler.erl b/examples/rest_pastebin/src/toppage_handler.erl index a6a0829..9267349 100644 --- a/examples/rest_pastebin/src/toppage_handler.erl +++ b/examples/rest_pastebin/src/toppage_handler.erl @@ -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. |