diff options
Diffstat (limited to '')
-rw-r--r-- | lib/lsg/auth_token.ex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/lsg/auth_token.ex b/lib/lsg/auth_token.ex index 0c5ba58..d125ea4 100644 --- a/lib/lsg/auth_token.ex +++ b/lib/lsg/auth_token.ex @@ -1,4 +1,4 @@ -defmodule LSG.AuthToken do +defmodule Nola.AuthToken do use GenServer def start_link() do @@ -12,7 +12,7 @@ defmodule LSG.AuthToken do def new_path(account, perks \\ nil) do case new(account, perks) do {:ok, id} -> - LSGWeb.Router.Helpers.login_path(LSGWeb.Endpoint, :token, id) + NolaWeb.Router.Helpers.login_path(NolaWeb.Endpoint, :token, id) error -> error end @@ -21,7 +21,7 @@ defmodule LSG.AuthToken do def new_url(account, perks \\ nil) do case new(account, perks) do {:ok, id} -> - LSGWeb.Router.Helpers.login_url(LSGWeb.Endpoint, :token, id) + NolaWeb.Router.Helpers.login_url(NolaWeb.Endpoint, :token, id) error -> error end |