mobilizon/lib/eventos_web/auth_pipeline.ex

15 lines
382 B
Elixir
Raw Normal View History

2017-12-09 13:58:37 +00:00
defmodule EventosWeb.AuthPipeline do
@moduledoc """
Handles the app sessions
"""
2017-12-09 13:58:37 +00:00
use Guardian.Plug.Pipeline,
otp_app: :eventos,
module: EventosWeb.Guardian,
error_handler: EventosWeb.AuthErrorHandler
2017-12-09 13:58:37 +00:00
plug(Guardian.Plug.VerifyHeader, claims: %{"typ" => "access"})
plug(Guardian.Plug.EnsureAuthenticated)
plug(Guardian.Plug.LoadResource, ensure: true)
end