mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
Add @moduledoc for most handlers
[ci skip]
This commit is contained in:
parent
3dba102498
commit
704b38006d
11 changed files with 40 additions and 0 deletions
|
@ -1,4 +1,7 @@
|
|||
defmodule HTTParrot.BasicAuthHandler do
|
||||
@moduledoc """
|
||||
Challenges HTTPBasic Auth
|
||||
"""
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
defmodule HTTParrot.CookiesHandler do
|
||||
@moduledoc """
|
||||
Returns cookie data.
|
||||
"""
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
defmodule HTTParrot.DeleteCookiesHandler do
|
||||
@moduledoc """
|
||||
Deletes one or more simple cookies.
|
||||
"""
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
defmodule HTTParrot.DeleteHandler do
|
||||
@moduledoc """
|
||||
Returns DELETE data.
|
||||
"""
|
||||
alias HTTParrot.GeneralRequestInfo
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
defmodule HTTParrot.GetHandler do
|
||||
@moduledoc """
|
||||
Returns GET data.
|
||||
"""
|
||||
alias HTTParrot.GeneralRequestInfo
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
defmodule HTTParrot.HiddenBasicAuthHandler do
|
||||
@moduledoc """
|
||||
404'd BasicAuth
|
||||
"""
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
defmodule HTTParrot.IPHandler do
|
||||
@moduledoc """
|
||||
Returns Origin IP
|
||||
"""
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
defmodule HTTParrot.RedirectToHandler do
|
||||
@moduledoc """
|
||||
Redirects to the foo URL.
|
||||
"""
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
defmodule HTTParrot.SetCookiesHandler do
|
||||
@moduledoc """
|
||||
Sets one or more simple cookies.
|
||||
"""
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
defmodule HTTParrot.StatusCodeHandler do
|
||||
@moduledoc """
|
||||
Returns given HTTP Status code.
|
||||
"""
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
defmodule HTTParrot.UserAgentHandler do
|
||||
@moduledoc """
|
||||
Returns user-agent.
|
||||
"""
|
||||
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue