make it so
This commit is contained in:
commit
1c14844317
45 changed files with 2592 additions and 0 deletions
21
lib/wild_web/controllers/error_json.ex
Normal file
21
lib/wild_web/controllers/error_json.ex
Normal file
|
@ -0,0 +1,21 @@
|
|||
defmodule WildWeb.ErrorJSON do
|
||||
@moduledoc """
|
||||
This module is invoked by your endpoint in case of errors on JSON requests.
|
||||
|
||||
See config/config.exs.
|
||||
"""
|
||||
|
||||
# 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
|
Loading…
Add table
Add a link
Reference in a new issue