11 lines
310 B
Erlang
11 lines
310 B
Erlang
%% Feel free to use, reuse and abuse the code in this file.
|
|
|
|
-module(cookie_informational_h).
|
|
|
|
-export([init/2]).
|
|
|
|
init(Req0, State) ->
|
|
cowboy_req:inform(103, #{<<"set-cookie">> => [<<"informational=1">>]}, Req0),
|
|
Req = cowboy_req:reply(204, #{<<"set-cookie">> => [<<"final=1">>]}, Req0),
|
|
{ok, Req, State}.
|