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:
parent
014791113a
commit
34dda194f9
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ defmodule HTTParrot do
|
|||
{'/put', HTTParrot.PHandler, []},
|
||||
{'/patch', HTTParrot.PHandler, []},
|
||||
{'/delete', HTTParrot.DeleteHandler, []},
|
||||
{'/status/:code', HTTParrot.StatusCodeHandler, []},
|
||||
{'/status/:code', [code: :int], HTTParrot.StatusCodeHandler, []},
|
||||
{'/redirect/:n', HTTParrot.RedirectHandler, []},
|
||||
{'/redirect-to', HTTParrot.RedirectToHandler, []},
|
||||
{'/relative-redirect/:n', HTTParrot.RelativeRedirectHandler, []},
|
||||
|
|
Loading…
Add table
Reference in a new issue