16 lines
385 B
Elixir
16 lines
385 B
Elixir
|
defmodule BackendWeb.FallbackController do
|
||
|
@moduledoc """
|
||
|
Translates controller action results into valid `Plug.Conn` responses.
|
||
|
|
||
|
See `Phoenix.Controller.action_fallback/1` for more details.
|
||
|
"""
|
||
|
use BackendWeb, :controller
|
||
|
|
||
|
def call(conn, {:error, :not_found}) do
|
||
|
conn
|
||
|
|> put_status(:not_found)
|
||
|
|> put_view(BackendWeb.ErrorView)
|
||
|
|> render(:"404")
|
||
|
end
|
||
|
end
|