mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
15 lines
376 B
Elixir
15 lines
376 B
Elixir
defmodule PhilomenaWeb.NotAuthorizedPlug do
|
|
alias Phoenix.Controller
|
|
alias Plug.Conn
|
|
|
|
def init([]), do: []
|
|
|
|
def call(conn), do: call(conn, nil)
|
|
def call(conn, _opts) do
|
|
conn
|
|
|> Controller.fetch_flash()
|
|
|> Controller.put_flash(:error, "You can't access that page.")
|
|
|> Controller.redirect(external: conn.assigns.referrer)
|
|
|> Conn.halt()
|
|
end
|
|
end
|