aboutsummaryrefslogtreecommitdiffstats
path: root/test/rest_forbidden_resource.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-04-11 17:59:54 +0200
committerLoïc Hoguin <[email protected]>2013-04-11 22:25:36 +0200
commit5a171d0f8050eda4e43de82efb7f2508be314ee6 (patch)
treed2d182b9ff779f3f500e94a79b5adfdf831df19b /test/rest_forbidden_resource.erl
parent6256429dc97d69cbb19076acfea8e1fc3efb1286 (diff)
downloadcowboy-5a171d0f8050eda4e43de82efb7f2508be314ee6.tar.gz
cowboy-5a171d0f8050eda4e43de82efb7f2508be314ee6.tar.bz2
cowboy-5a171d0f8050eda4e43de82efb7f2508be314ee6.zip
Remove process_post, post_is_create, create_path, created_path callbacks
Instead it will always go through content_types_accepted and it is up to the resource code to do any creation and to return the created path if the method is POST and the client should be redirected to the created resource's location. This removes the meta value 'put_path' as it is not needed anymore. This fixes an issue with PATCH where content types were not normalized.
Diffstat (limited to 'test/rest_forbidden_resource.erl')
-rw-r--r--test/rest_forbidden_resource.erl15
1 files changed, 3 insertions, 12 deletions
diff --git a/test/rest_forbidden_resource.erl b/test/rest_forbidden_resource.erl
index 63aac7e..287ff62 100644
--- a/test/rest_forbidden_resource.erl
+++ b/test/rest_forbidden_resource.erl
@@ -1,7 +1,7 @@
-module(rest_forbidden_resource).
-export([init/3, rest_init/2, allowed_methods/2, forbidden/2,
content_types_provided/2, content_types_accepted/2,
- post_is_create/2, create_path/2, to_text/2, from_text/2]).
+ to_text/2, from_text/2]).
init(_Transport, _Req, _Opts) ->
{upgrade, protocol, cowboy_rest}.
@@ -23,18 +23,9 @@ content_types_provided(Req, State) ->
content_types_accepted(Req, State) ->
{[{{<<"text">>, <<"plain">>, []}, from_text}], Req, State}.
-post_is_create(Req, State) ->
- {true, Req, State}.
-
-create_path(Req, State) ->
- {Path, Req2} = cowboy_req:path(Req),
- {Path, Req2, State}.
-
to_text(Req, State) ->
{<<"This is REST!">>, Req, State}.
from_text(Req, State) ->
- {true, Req, State}.
-
-
-
+ {Path, Req2} = cowboy_req:path(Req),
+ {Path, Req2, State}.