Sha256: 40d614a5f533c109aae6b800b46d092569da1ab40bb402133c6e337ed5aa8e71
Contents?: true
Size: 702 Bytes
Versions: 38
Compression:
Stored size: 702 Bytes
Contents
require 'shared_admin' class Admin include Mongoid::Document include Shim include SharedAdmin ## Database authenticatable field :email, type: String field :encrypted_password, type: String ## Recoverable field :reset_password_token, type: String field :reset_password_sent_at, type: Time ## 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 ## Lockable field :locked_at, type: Time field :active, type: Boolean, default: false end
Version data entries
38 entries across 38 versions & 8 rubygems