mobilizon.chapril.org-mobil.../lib/eventos_web/auth_pipeline.ex

15 lines
428 B
Elixir
Raw Normal View History

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