live_beats/lib/live_beats_web/controllers/error_html.ex
2022-11-17 10:01:20 -05:00

8 lines
183 B
Elixir

defmodule LiveBeatsWeb.ErrorHTML do
use LiveBeatsWeb, :html
def template_not_found(template, _assigns) do
Phoenix.Controller.status_message_from_template(template)
end
end