mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
18 lines
391 B
Elixir
18 lines
391 B
Elixir
defmodule ChessWeb.ErrorView do
|
|
use ChessWeb, :view
|
|
|
|
def render("404.html", _assigns) do
|
|
gettext("Page not found")
|
|
end
|
|
|
|
def render("500.html", _assigns) do
|
|
gettext("Internal server error")
|
|
end
|
|
|
|
# In case no render clause matches or no
|
|
# template is found, let's render it as 500
|
|
def template_not_found(_template, assigns) do
|
|
render("500.html", assigns)
|
|
end
|
|
end
|