9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# File 'lib/generators/devise_otp/install_generator.rb', line 9
def add_configs
content = <<-CONTENT
# ==> Devise OTP Extension
# Configure OTP extension for devise
# OTP is mandatory, users are going to be asked to
# enroll OTP the next time they sign in, before they can successfully complete the session establishment.
# This is the global value, can also be set on each user.
#config.otp_mandatory = false
# Drift: a window which provides allowance for drift between a user's token device clock
# (and therefore their OTP tokens) and the authentication server's clock.
# Expressed in minutes centered at the current time. (Note: it's a number, *NOT* 3.minutes )
#config.otp_drift_window = 3
# Users that have logged in longer than this time ago, are going to be asked their password
# (and an OTP challenge, if enabled) before they can see or change their otp informations.
#config.otp_credentials_refresh = 15.minutes
# Users are given a list of one-time recovery tokens, for emergency access
# set to false to disable giving recovery tokens.
#config.otp_recovery_tokens = 10
# The user is allowed to set his browser as "trusted", no more OTP challenges will be
# asked for that browser, for a limited time.
# set to false to disable setting the browser as trusted
#config.otp_trust_persistence = 1.month
# The name of the token issuer, to be added to the provisioning
# url. Display will vary based on token application. (defaults to the Rails application class)
#config.otp_issuer = 'my_application'
CONTENT
inject_into_file "config/initializers/devise.rb", content, :before => /end[ |\n|]+\Z/
end
|