Current section

Files

Jump to
push_ex lib push_ex_web views error_view.ex
Raw

lib/push_ex_web/views/error_view.ex

defmodule PushExWeb.ErrorView do
@moduledoc false
use PushExWeb, :view
def template_not_found(template, _assigns) do
%{errors: %{detail: Phoenix.Controller.status_message_from_template(template)}}
end
end