Sha256: 054aca9ea6c5f75532d15c65b4b7b501691fa264619d0e2c9df102ecd0fa04ff
Contents?: true
Size: 714 Bytes
Versions: 11
Compression:
Stored size: 714 Bytes
Contents
require 'shared_admin' class Admin include Mongoid::Document include Shim include SharedAdmin ## Database authenticatable field :email, :type => String, :null => true field :encrypted_password, :type => String, :null => true ## 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 end
Version data entries
11 entries across 11 versions & 3 rubygems