Current section

Files

Jump to
livebook lib livebook_web live hooks auth_hook.ex
Raw

lib/livebook_web/live/hooks/auth_hook.ex

defmodule LivebookWeb.AuthHook do
import Phoenix.LiveView
use LivebookWeb, :verified_routes
def on_mount(:default, _params, session, socket) do
uri = get_connect_info(socket, :uri)
if LivebookWeb.AuthPlug.authenticated?(session || %{}, uri.port) do
{:cont, socket}
else
{:halt, redirect(socket, to: ~p"/")}
end
end
end