mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 16:22:32 -04:00
Merge pull request #31 from idabmat/master
Allow to send accept header with delete request
This commit is contained in:
commit
8f4b1a4a89
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue