mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-16 05:00:24 +00:00
Add default CTP: "text/html" maps to to_html
This commit is contained in:
parent
97b8401c45
commit
f316b47d13
3 changed files with 39 additions and 1 deletions
14
test/rest_postonly_resource.erl
Normal file
14
test/rest_postonly_resource.erl
Normal file
|
@ -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}.
|
Loading…
Add table
Add a link
Reference in a new issue