This commit is contained in:
2023-09-20 20:40:47 -04:00
commit bd9fc782ff
927 changed files with 5533 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
defmodule StreamviewWeb.ErrorHTML do
use StreamviewWeb, :html
# If you want to customize your error pages,
# uncomment the embed_templates/1 call below
# and add pages to the error directory:
#
# * lib/streamview_web/controllers/error_html/404.html.heex
# * lib/streamview_web/controllers/error_html/500.html.heex
#
# embed_templates "error_html/*"
# The default is to render a plain text page based on
# the template name. For example, "404.html" becomes
# "Not Found".
def render(template, _assigns) do
Phoenix.Controller.status_message_from_template(template)
end
end