Sha256: ef4b4d32dfd8ef9f0424ae7be9d7a9eb6c80d3993f8d543c8426accb8962c73d

Contents?: true

Size: 1.51 KB

Versions: 14

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

class ConfirmableUser
  include Mongoid::Document
  include Mongoid::Timestamps
  include Mongoid::Locker

  field :locker_locked_at, type: Time
  field :locker_locked_until, type: Time

  locker locked_at_field: :locker_locked_at,
         locked_until_field: :locker_locked_until

  ## User Info
  field :name,      type: String
  field :nickname,  type: String
  field :image,     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
  field :reset_password_redirect_url, type: String
  field :allow_password_change,       type: Boolean, default: false

  ## Rememberable
  field :remember_created_at, type: Time

  ## 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

  ## Required
  field :provider, type: String
  field :uid,      type: String, default: ''

  ## Tokens
  field :tokens, type: Hash, default: {}

  # Include default devise modules.
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable,
         :validatable, :confirmable
  DeviseJwtAuth.send_confirmation_email = true
  include DeviseJwtAuth::Concerns::User
  DeviseJwtAuth.send_confirmation_email = false
end

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
devise_jwt_auth722-0.1.7 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth7-0.1.7 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.4.1 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.4.0 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.3.0 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.2.0 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.1.7 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.1.6 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.1.5 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.1.4 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.1.3 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.1.2 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.1.1 test/dummy/app/mongoid/confirmable_user.rb
devise_jwt_auth-0.1.0 test/dummy/app/mongoid/confirmable_user.rb