2017-12-08 09:58:14 +01:00
|
|
|
defmodule EventosWeb.ErrorView do
|
2018-01-14 17:56:50 +01:00
|
|
|
@moduledoc """
|
|
|
|
View for errors
|
|
|
|
"""
|
2017-12-08 09:58:14 +01:00
|
|
|
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
|