mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
14 lines
388 B
Erlang
14 lines
388 B
Erlang
-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}.
|