mobilizon.chapril.org-mobil.../lib/web/auth/pipeline.ex

15 lines
386 B
Elixir

defmodule Mobilizon.Web.Auth.Pipeline do
@moduledoc """
Handles the app sessions
"""
use Guardian.Plug.Pipeline,
otp_app: :mobilizon,
module: Mobilizon.Web.Auth.Guardian,
error_handler: Mobilizon.Web.Auth.ErrorHandler
plug(Guardian.Plug.VerifyHeader, scheme: "Bearer")
plug(Guardian.Plug.LoadResource, allow_blank: true)
plug(Mobilizon.Web.Auth.Context)
end