aboutsummaryrefslogtreecommitdiffstats
path: root/test/rest_postonly_resource.erl
diff options
context:
space:
mode:
authorSeletskiy Stanislav <[email protected]>2013-04-26 18:34:01 +0700
committerSeletskiy Stanislav <[email protected]>2013-04-26 18:34:01 +0700
commitf316b47d13bfd67834ee6335bb5b8bb495c6c6f8 (patch)
tree25636747e4a785d86499d89ada336610d62fd155 /test/rest_postonly_resource.erl
parent97b8401c45ea24dca034db6a34cf02f0809034c3 (diff)
downloadcowboy-f316b47d13bfd67834ee6335bb5b8bb495c6c6f8.tar.gz
cowboy-f316b47d13bfd67834ee6335bb5b8bb495c6c6f8.tar.bz2
cowboy-f316b47d13bfd67834ee6335bb5b8bb495c6c6f8.zip
Add default CTP: "text/html" maps to `to_html`
Diffstat (limited to 'test/rest_postonly_resource.erl')
-rw-r--r--test/rest_postonly_resource.erl14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/rest_postonly_resource.erl b/test/rest_postonly_resource.erl
new file mode 100644
index 0000000..4f725c9
--- /dev/null
+++ b/test/rest_postonly_resource.erl
@@ -0,0 +1,14 @@
+-module(rest_postonly_resource).
+-export([init/3, allowed_methods/2, content_types_accepted/2, from_text/2]).
+
+init(_Transport, _Req, _Opts) ->
+ {upgrade, protocol, cowboy_rest}.
+
+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}.