2017-03-17 16:09:58 +00:00
|
|
|
defmodule Pleroma.Web.ErrorView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
|
|
|
|
def render("404.json", _assigns) do
|
|
|
|
%{errors: %{detail: "Page not found"}}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("500.json", _assigns) do
|
|
|
|
%{errors: %{detail: "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
|
2018-03-30 13:01:53 +00:00
|
|
|
render("500.json", assigns)
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
end
|