Sha256: ce9ed86057afcec033c11f06e4b15367147fd5544673a4c769aa8a59b1e6e660
Contents?: true
Size: 1.72 KB
Versions: 7
Compression:
Stored size: 1.72 KB
Contents
# frozen_string_literal: true require 'shared_user_with_password_verification' class OneUser include Mongoid::Document include Shim include SharedUserWithPasswordVerification include SharedSecurityQuestionsFields field :password_changed_at, type: Time index({ password_changed_at: 1 }, {}) #field :paranoid_verification_code, type: String #field :paranoid_verified_at, type: Time #field :paranoid_verification_attempt, type: Integer, default: 0 field :username, type: String field :facebook_token, type: String ## Database authenticatable field :email, type: String, default: "" field :encrypted_password, type: String, default: "" ## Recoverable field :reset_password_token, type: String field :reset_password_sent_at, type: Time ## Rememberable field :remember_created_at, type: Time ## Trackable field :sign_in_count, type: Integer, default: 0 field :current_sign_in_at, type: Time field :last_sign_in_at, type: Time field :current_sign_in_ip, type: String field :last_sign_in_ip, type: String ## Confirmable field :confirmation_token, type: String field :confirmed_at, type: Time field :confirmation_sent_at, type: Time # field :unconfirmed_email, type: String # Only if using reconfirmable ## Lockable field :failed_attempts, type: Integer, default: 0 # Only if lock strategy is :failed_attempts field :unlock_token, type: String # Only if unlock strategy is :email or :both field :locked_at, type: Time cattr_accessor :validations_performed after_validation :after_validation_callback def after_validation_callback # used to check in our test if the validations were called @@validations_performed = true end end
Version data entries
7 entries across 7 versions & 1 rubygems