From 168405830d564ff87fac61bd990c17ab6a35dfa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 8 Dec 2011 20:21:50 +0100 Subject: Fix the process_post/2 function in cowboy_http_rest --- src/cowboy_http_rest.erl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/cowboy_http_rest.erl') diff --git a/src/cowboy_http_rest.erl b/src/cowboy_http_rest.erl index ffece5a..ef6e92c 100644 --- a/src/cowboy_http_rest.erl +++ b/src/cowboy_http_rest.erl @@ -623,12 +623,11 @@ create_path(Req, State) -> put_resource(Req3, State2, 303) end. -%% @todo process_post/2 isn't fully implemented yet. process_post(Req, State) -> case call(Req, State, process_post) of - {ok, _Req2, HandlerState} -> - _ = _State2 = State#state{handler_state=HandlerState}, - todo %% @todo ??? + {ok, Req2, HandlerState} -> + State2 = State#state{handler_state=HandlerState}, + next(Req2, State2, 201) end. is_conflict(Req, State) -> -- cgit v1.2.3