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.
9 lines
253 B
9 lines
253 B
13 years ago
|
module TwoFactorAuthentication
|
||
|
module Schema
|
||
|
def two_factor_authenticatable
|
||
|
apply_devise_schema :second_factor_pass_code, String, :limit => 32
|
||
|
apply_devise_schema :second_factor_attempts_count, Integer, :default => 0
|
||
|
end
|
||
|
end
|
||
|
end
|