virgin phoenix app

This commit is contained in:
Thelonius Kort
2020-07-13 12:56:50 +02:00
commit 24fcc831af
48 changed files with 9557 additions and 0 deletions

View File

@ -0,0 +1,16 @@
defmodule ClipWeb.ErrorView do
use ClipWeb, :view
# If you want to customize a particular status code
# for a certain format, you may uncomment below.
# def render("500.html", _assigns) do
# "Internal Server Error"
# end
# By default, Phoenix returns the status message from
# the template name. For example, "404.html" becomes
# "Not Found".
def template_not_found(template, _assigns) do
Phoenix.Controller.status_message_from_template(template)
end
end