From 15ad5d5e65d7d1e7a1c96d51cfe177a97283f05a Mon Sep 17 00:00:00 2001 From: Eduardo Gurgel Date: Thu, 2 Jan 2014 01:29:05 -0300 Subject: [PATCH] Reply 'application/json' as content-type on '/post' --- lib/httparrot/post_handler.ex | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/httparrot/post_handler.ex b/lib/httparrot/post_handler.ex index 2eadb96..7a1166d 100644 --- a/lib/httparrot/post_handler.ex +++ b/lib/httparrot/post_handler.ex @@ -8,11 +8,16 @@ defmodule HTTParrot.PostHandler do def allowed_methods(req, state) do {["POST"], req, state} end + def content_types_accepted(req, state) do {[{{"application", "json", :*}, :post_json}, {{"application", "x-www-form-urlencoded", :*}, :post_form}], req, state} end + def content_types_provided(req, state) do + {[{{"application", "json", []}, :undefined}], req, state} + end + def post_form(req, _state) do {:ok, body, req} = :cowboy_req.body_qs(req) post(req, [form: body, data: "", json: nil])