add custom error pages

This commit is contained in:
2022-02-08 22:56:57 -05:00
parent 455fe354c1
commit 8eb956d520
4 changed files with 69 additions and 12 deletions

View File

@ -1,16 +1,15 @@
defmodule CanneryWeb.ErrorView do
use CanneryWeb, :view
alias CanneryWeb.{Endpoint, HomeLive}
# If you want to customize a particular status code
# for a certain format, you may uncomment below.
# def render("500.html", _assigns) do
# "Internal Server Error"
# end
def template_not_found(error_path, _assigns) do
error_string =
case error_path do
"404.html" -> dgettext("errors", "Not found")
"401.html" -> dgettext("errors", "Unauthorized")
_ -> dgettext("errors", "Internal Server Error")
end
# By default, Phoenix returns the status message from
# the template name. For example, "404.html" becomes
# "Not Found".
def template_not_found(template, _assigns) do
Phoenix.Controller.status_message_from_template(template)
render("error.html", %{error_string: error_string})
end
end