aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/charsets_provided_empty_h.erl
blob: 0548a5ee8eb1b181c77ae05be46d17a2c144f4d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
%% This module has a text and non-text media type,
%% but provides no charset. All requests will result
%% in a 406 not acceptable.

-module(charsets_provided_empty_h).

-export([init/2]).
-export([content_types_provided/2]).
-export([charsets_provided/2]).
-export([get_text_plain/2]).
-export([get_application_json/2]).

init(Req, Opts) ->
	{cowboy_rest, Req, Opts}.

content_types_provided(Req, State) ->
	{[
		{{<<"text">>, <<"plain">>, []}, get_text_plain},
		{{<<"application">>, <<"json">>, []}, get_application_json}
	], Req, State}.

charsets_provided(Req, State) ->
	{[], Req, State}.

get_text_plain(Req, State) ->
	{<<"This is REST!">>, Req, State}.

get_application_json(Req, State) ->
	{<<"{\"hello\": \"rest\"}">>, Req, State}.