2018-10-11 15:37:39 +00:00
|
|
|
defmodule MobilizonWeb.FallbackController do
|
2018-01-13 22:33:03 +00:00
|
|
|
@moduledoc """
|
|
|
|
Translates controller action results into valid `Plug.Conn` responses.
|
|
|
|
|
|
|
|
See `Phoenix.Controller.action_fallback/1` for more details.
|
|
|
|
"""
|
2018-10-11 15:37:39 +00:00
|
|
|
use MobilizonWeb, :controller
|
2018-01-13 22:33:03 +00:00
|
|
|
|
|
|
|
def call(conn, {:error, :not_found}) do
|
|
|
|
conn
|
|
|
|
|> put_status(:not_found)
|
2019-03-01 11:57:39 +00:00
|
|
|
|> put_view(MobilizonWeb.ErrorView)
|
2019-05-02 11:04:21 +00:00
|
|
|
|> render(:"404")
|
2018-01-13 22:33:03 +00:00
|
|
|
end
|
|
|
|
end
|