enable live dashboard os monitoring

This commit is contained in:
shibao 2022-02-15 18:44:30 -05:00
parent b49e3c3fa6
commit 1235243a39
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ defmodule CanneryWeb.UserRegistrationController do
|> redirect(to: Routes.user_session_path(Endpoint, :new))
{:error, %Ecto.Changeset{} = changeset} ->
render(conn, "new.html", changeset: changeset, invite: invite)
conn |> render("new.html", changeset: changeset, invite: invite)
end
end
end

View File

@ -33,7 +33,7 @@ defmodule Cannery.MixProject do
def application do
[
mod: {Cannery.Application, []},
extra_applications: [:logger, :runtime_tools]
extra_applications: [:logger, :runtime_tools, :os_mon],
]
end