You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
327 B
18 lines
327 B
11 years ago
|
module AuthenticatedModelHelper
|
||
|
|
||
|
class User
|
||
|
extend ActiveModel::Callbacks
|
||
|
include ActiveModel::Validations
|
||
|
include Devise::Models::TwoFactorAuthenticatable
|
||
|
|
||
|
define_model_callbacks :create
|
||
|
attr_accessor :otp_secret_key, :email
|
||
|
|
||
|
has_one_time_password
|
||
|
end
|
||
|
|
||
|
def create_new_user
|
||
|
User.new
|
||
|
end
|
||
|
|
||
|
end
|