1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Allow to send accept header with delete request

This commit is contained in:
Igor de Alcantara Barroso 2018-10-30 15:58:31 +01:00
parent 84fa15df9b
commit e355751abf
No known key found for this signature in database
GPG key ID: 794A41BA3DBE9931

View file

@ -5,6 +5,10 @@ defmodule HTTParrot.DeleteHandler do
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)