mirror of
https://github.com/plausible/analytics.git
synced 2024-11-28 04:30:42 +03:00
19 lines
452 B
Elixir
19 lines
452 B
Elixir
|
defmodule PlausibleWeb.ControllerHelpers do
|
||
|
import Plug.Conn
|
||
|
import Phoenix.Controller
|
||
|
|
||
|
def render_error(conn, status, message) do
|
||
|
conn
|
||
|
|> put_status(status)
|
||
|
|> put_view(PlausibleWeb.ErrorView)
|
||
|
|> render("#{status}.html", layout: false, message: message)
|
||
|
end
|
||
|
|
||
|
def render_error(conn, status) do
|
||
|
conn
|
||
|
|> put_status(status)
|
||
|
|> put_view(PlausibleWeb.ErrorView)
|
||
|
|> render("#{status}.html", layout: false)
|
||
|
end
|
||
|
end
|