2021-03-05 19:23:32 -05:00
|
|
|
defmodule Shift73kWeb.UserSessionView do
|
|
|
|
use Shift73kWeb, :view
|
2023-01-28 08:14:32 -05:00
|
|
|
import Shift73k, only: [get_app_allow_reg: 0]
|
2021-03-05 19:23:32 -05:00
|
|
|
alias Shift73k.Accounts.User
|
2022-08-14 09:14:42 -04:00
|
|
|
|
2023-01-28 08:14:32 -05:00
|
|
|
def allow_registration, do: get_app_allow_reg()
|
2021-03-05 19:23:32 -05:00
|
|
|
end
|