mirror of
https://github.com/kevin-DL/phoenix_api_template.git
synced 2026-01-11 18:54:33 +00:00
12 lines
380 B
Elixir
12 lines
380 B
Elixir
defmodule PhoenixApiTemplateWeb.Auth.Pipeline do
|
|
use Guardian.Plug.Pipeline,
|
|
otp_app: :phoenix_api_template,
|
|
module: PhoenixApiTemplateWeb.Auth.Guardian,
|
|
error_handler: PhoenixApiTemplateWeb.Auth.GuardianErrorHandler
|
|
|
|
plug Guardian.Plug.VerifySession
|
|
plug Guardian.Plug.VerifyHeader
|
|
plug Guardian.Plug.EnsureAuthenticated
|
|
plug Guardian.Plug.LoadResource
|
|
end
|