You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
312 B
10 lines
312 B
defmodule LinkShortenerWeb.Auth.Pipeline do
|
|
use Guardian.Plug.Pipeline, otp_app: :link_shortener,
|
|
module: LinkShortenerWeb.Auth.Guardian,
|
|
error_handler: LinkShortenerWeb.Auth.ErrorHandler
|
|
|
|
plug Guardian.Plug.VerifyHeader
|
|
plug Guardian.Plug.EnsureAuthenticated
|
|
plug Guardian.Plug.LoadResource
|
|
end
|