1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 16:22:32 -04:00
httparrot/lib/httparrot/delete_handler.ex
2019-06-28 09:34:36 +03:00

21 lines
513 B
Elixir

defmodule HTTParrot.DeleteHandler do
@moduledoc """
Returns DELETE data.
"""
alias HTTParrot.GeneralRequestInfo
use HTTParrot.Cowboy, methods: ~w(DELETE)
def content_types_provided(req, state) do
{[{{"application", "json", []}, :get_json}], req, state}
end
def delete_resource(req, state) do
{info, req} = GeneralRequestInfo.retrieve(req)
req = :cowboy_req.set_resp_body(response(info), req)
{true, req, state}
end
defp response(info) do
info |> JSX.encode!()
end
end