Entendu/lib/entendu_web/controllers/file_not_found_controller.ex

10 lines
180 B
Elixir

defmodule EntenduWeb.FileNotFoundController do
use EntenduWeb, :controller
def index(conn, _params) do
conn
|> put_status(404)
|> text("File Not Found")
end
end