server/lib/boardwise_web/controllers/error_json.ex

16 lines
497 B
Elixir
Raw Normal View History

2023-11-30 17:25:00 +00:00
defmodule BoardWiseWeb.ErrorJSON do
2023-11-28 17:50:13 +00:00
# If you want to customize a particular status code,
# you may add your own clauses, such as:
#
# def render("500.json", _assigns) do
# %{errors: %{detail: "Internal Server Error"}}
# end
# By default, Phoenix returns the status message from
# the template name. For example, "404.json" becomes
# "Not Found".
def render(template, _assigns) do
%{errors: %{detail: Phoenix.Controller.status_message_from_template(template)}}
end
end