mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-23 00:58:41 +00:00
90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
17 lines
376 B
Elixir
17 lines
376 B
Elixir
defmodule EventosWeb.ErrorView do
|
|
use EventosWeb, :view
|
|
|
|
def render("404.html", _assigns) do
|
|
"Page not found"
|
|
end
|
|
|
|
def render("500.html", _assigns) do
|
|
"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
|