2020-01-26 21:36:50 +01:00
|
|
|
defmodule Mobilizon.Web.FallbackController do
|
2018-01-13 23:33:03 +01:00
|
|
|
@moduledoc """
|
|
|
|
Translates controller action results into valid `Plug.Conn` responses.
|
|
|
|
|
|
|
|
See `Phoenix.Controller.action_fallback/1` for more details.
|
|
|
|
"""
|
2020-01-26 21:36:50 +01:00
|
|
|
use Mobilizon.Web, :controller
|
2018-01-13 23:33:03 +01:00
|
|
|
|
2021-09-28 19:40:37 +02:00
|
|
|
@spec call(Plug.Conn.t(), {:error, :not_found}) :: Plug.Conn.t()
|
2018-01-13 23:33:03 +01:00
|
|
|
def call(conn, {:error, :not_found}) do
|
|
|
|
conn
|
|
|
|
|> put_status(:not_found)
|
2020-01-26 21:36:50 +01:00
|
|
|
|> put_view(Mobilizon.Web.ErrorView)
|
2019-05-02 13:04:21 +02:00
|
|
|
|> render(:"404")
|
2018-01-13 23:33:03 +01:00
|
|
|
end
|
|
|
|
end
|