live_beats/lib/live_beats_web/controllers/error_html.ex

8 lines
183 B
Elixir
Raw Normal View History

2022-11-17 15:01:20 +00:00
defmodule LiveBeatsWeb.ErrorHTML do
use LiveBeatsWeb, :html
def template_not_found(template, _assigns) do
Phoenix.Controller.status_message_from_template(template)
end
end