559c889f1b
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
32 lines
643 B
Elixir
32 lines
643 B
Elixir
defmodule MobilizonWeb.ErrorView do
|
|
@moduledoc """
|
|
View for errors
|
|
"""
|
|
use MobilizonWeb, :view
|
|
|
|
def render("404.html", _assigns) do
|
|
"Page not found"
|
|
end
|
|
|
|
def render("invalid_request.json", _assigns) do
|
|
%{errors: "Invalid request"}
|
|
end
|
|
|
|
def render("not_found.json", %{details: details}) do
|
|
%{
|
|
msg: "Resource not found",
|
|
details: details
|
|
}
|
|
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
|