class DeviseTwoFactor::Generators::InstallGenerator

Install Generator

Public Instance Methods

add_configs() click to toggle source
# File lib/generators/devise_two_factor/install_generator.rb, line 9
      def add_configs
        content = <<-CONTENT

  # ==> Devise TwoFactor 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
copy_locale() click to toggle source
# File lib/generators/devise_two_factor/install_generator.rb, line 47
def copy_locale
  copy_file '../../../config/locales/en.yml', 'config/locales/devise.two_factor.en.yml'
end