Two factor authentication extension for Devise
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.
|
module TwoFactorAuthentication |
|
module Schema |
|
def otp_secret_key |
|
apply_devise_schema :otp_secret_key, String |
|
end |
|
|
|
def second_factor_attempts_count |
|
apply_devise_schema :second_factor_attempts_count, Integer, :default => 0 |
|
end |
|
end |
|
end
|
|
|