From 0fae6c5a8830bce1af9d8636f3017811e61bcd00 Mon Sep 17 00:00:00 2001 From: Eduardo Gurgel Date: Sun, 26 Jan 2014 11:45:29 -0300 Subject: [PATCH] Accept HEAD and OPTIONS on /status --- lib/httparrot/status_code_handler.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/httparrot/status_code_handler.ex b/lib/httparrot/status_code_handler.ex index 75fae20..cebb905 100644 --- a/lib/httparrot/status_code_handler.ex +++ b/lib/httparrot/status_code_handler.ex @@ -8,7 +8,7 @@ defmodule HTTParrot.StatusCodeHandler do end def allowed_methods(req, state) do - {["GET"], req, state} + {["GET", "HEAD", "OPTIONS"], req, state} end def content_types_provided(req, state) do