aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/rest_postonly_resource.erl
blob: 4f725c9cd6f201fd3ce77d419755ae28fb6200f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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}.