aboutsummaryrefslogtreecommitdiffstats
path: root/test/old_http_SUITE_data/rest_postonly_resource.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/old_http_SUITE_data/rest_postonly_resource.erl')
-rw-r--r--test/old_http_SUITE_data/rest_postonly_resource.erl18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/old_http_SUITE_data/rest_postonly_resource.erl b/test/old_http_SUITE_data/rest_postonly_resource.erl
new file mode 100644
index 0000000..942e55d
--- /dev/null
+++ b/test/old_http_SUITE_data/rest_postonly_resource.erl
@@ -0,0 +1,18 @@
+-module(rest_postonly_resource).
+
+-export([init/2]).
+-export([allowed_methods/2]).
+-export([content_types_accepted/2]).
+-export([from_text/2]).
+
+init(Req, Opts) ->
+ {cowboy_rest, Req, Opts}.
+
+allowed_methods(Req, State) ->
+ {[<<"POST">>], Req, State}.
+
+content_types_accepted(Req, State) ->
+ {[{{<<"text">>, <<"plain">>, '*'}, from_text}], Req, State}.
+
+from_text(Req, State) ->
+ {true, Req, State}.