philomena/lib/philomena_web/plugs/not_found_plug.ex

14 lines
345 B
Elixir
Raw Normal View History

2019-12-02 03:30:58 +01:00
defmodule PhilomenaWeb.NotFoundPlug do
alias Phoenix.Controller
alias Plug.Conn
def init([]), do: []
def call(conn), do: call(conn, nil)
def call(conn, _opts) do
conn
|> Controller.put_flash(:error, "Couldn't find what you were looking for!")
|> Controller.redirect(to: conn.assigns.referrer)
|> Conn.halt()
end
end