mobilizon.chapril.org-mobil.../lib/web/controllers/fallback_controller.ex

17 lines
461 B
Elixir
Raw Permalink Normal View History

2020-01-26 21:36:50 +01:00
defmodule Mobilizon.Web.FallbackController do
@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
@spec call(Plug.Conn.t(), {:error, :not_found}) :: Plug.Conn.t()
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")
end
end