1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 16:22:32 -04:00

Add integer constraint on code (status/:code)

This commit is contained in:
Eduardo Gurgel 2014-04-18 14:12:09 +12:00
parent 014791113a
commit 34dda194f9

View file

@ -12,7 +12,7 @@ defmodule HTTParrot do
{'/put', HTTParrot.PHandler, []}, {'/put', HTTParrot.PHandler, []},
{'/patch', HTTParrot.PHandler, []}, {'/patch', HTTParrot.PHandler, []},
{'/delete', HTTParrot.DeleteHandler, []}, {'/delete', HTTParrot.DeleteHandler, []},
{'/status/:code', HTTParrot.StatusCodeHandler, []}, {'/status/:code', [code: :int], HTTParrot.StatusCodeHandler, []},
{'/redirect/:n', HTTParrot.RedirectHandler, []}, {'/redirect/:n', HTTParrot.RedirectHandler, []},
{'/redirect-to', HTTParrot.RedirectToHandler, []}, {'/redirect-to', HTTParrot.RedirectToHandler, []},
{'/relative-redirect/:n', HTTParrot.RelativeRedirectHandler, []}, {'/relative-redirect/:n', HTTParrot.RelativeRedirectHandler, []},