Proxichat/web/views/error_view.ex
Mikko Ahlroth d031961a84 HÄXFEST 2015 !!! ! ! ! !
ZZZZZZZZZ
2015-11-29 06:34:42 +02:00

17 lines
378 B
Elixir

defmodule Proxichat.ErrorView do
use Proxichat.Web, :view
def render("404.html", _assigns) do
"Page not found"
end
def render("500.html", _assigns) do
"Server internal 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