aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/rest_postonly_resource.erl
blob: 9b14b24f2862d7fce7711fd7f8fdc915e5b1b857 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-module(rest_postonly_resource).

-export([init/2]).
-export([allowed_methods/2]).
-export([content_types_accepted/2]).
-export([from_text/2]).

init(Req, Opts) ->
	{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}.