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

15 lines
390 B
Elixir
Raw Normal View History

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