Sha256: 19f89f65c380ae5b10dc604f4520552ef58737110f297f5161aeffff57df0282
Contents?: true
Size: 1.43 KB
Versions: 14
Compression:
Stored size: 1.43 KB
Contents
# frozen_string_literal: true class ScopedUser 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, :omniauthable include DeviseJwtAuth::Concerns::User end
Version data entries
14 entries across 14 versions & 3 rubygems