Sha256: 991446c59a68e302367ceafe820611666b063130215c38b1cb9c5e31be81bb23
Contents?: true
Size: 738 Bytes
Versions: 32
Compression:
Stored size: 738 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
32 entries across 32 versions & 5 rubygems