live_beats/lib/live_beats_web/controllers/error_html.ex
2022-11-17 15:36:58 -05:00

8 lines
171 B
Elixir

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