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:
parent
84fa15df9b
commit
e355751abf
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,10 @@ defmodule HTTParrot.DeleteHandler do
|
||||||
alias HTTParrot.GeneralRequestInfo
|
alias HTTParrot.GeneralRequestInfo
|
||||||
use HTTParrot.Cowboy, methods: ~w(DELETE)
|
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
|
def delete_resource(req, state) do
|
||||||
{info, req} = GeneralRequestInfo.retrieve(req)
|
{info, req} = GeneralRequestInfo.retrieve(req)
|
||||||
req = :cowboy_req.set_resp_body(response(info), req)
|
req = :cowboy_req.set_resp_body(response(info), req)
|
||||||
|
|
Loading…
Add table
Reference in a new issue