shift73k/lib/shift73k_web/views/user_reset_password_view.ex

8 lines
206 B
Elixir
Raw Normal View History

2021-03-05 19:23:32 -05:00
defmodule Shift73kWeb.UserResetPasswordView do
use Shift73kWeb, :view
import Shift73k, only: [get_app_allow_reg: 0]
2021-03-05 19:23:32 -05:00
alias Shift73k.Accounts.User
def allow_registration, do: get_app_allow_reg()
2021-03-05 19:23:32 -05:00
end