class KnockOnce::Configuration

Attributes

password_token_expiry[RW]
reset_token_length[RW]
user_params[RW]

Public Class Methods

new() click to toggle source
# File lib/knock_once.rb, line 9
def initialize
  @user_params = :user, :email, :current_password, :password, :password_confirmation
  @password_token_expiry = 1.hour.from_now
  @reset_token_length = 18
end