2020-01-26 20:36:50 +00:00
|
|
|
defmodule Mobilizon.Web.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.
|
|
|
|
"""
|
2020-01-26 20:36:50 +00:00
|
|
|
use Mobilizon.Web, :controller
|
2018-01-13 22:33:03 +00:00
|
|
|
|
|
|
|
def call(conn, {:error, :not_found}) do
|
|
|
|
conn
|
|
|
|
|> put_status(:not_found)
|
2020-01-26 20:36:50 +00:00
|
|
|
|> put_view(Mobilizon.Web.ErrorView)
|
2019-05-02 11:04:21 +00:00
|
|
|
|> render(:"404")
|
2018-01-13 22:33:03 +00:00
|
|
|
end
|
|
|
|
end
|