Sha256: 9606dd4fe1cb118eb6c9a4a635cfd452dc13e473d32f49a929a25818d450b675

Contents?: true

Size: 730 Bytes

Versions: 4

Compression:

Stored size: 730 Bytes

Contents

class Admin < PARENT_MODEL_CLASS
  if DEVISE_ORM == :mongoid
    include Mongoid::Document

    ## Database authenticatable
    field :email, type: String, null: false, default: ""
    field :encrypted_password, type: String, null: false, default: ""

    ## Recoverable
    field :reset_password_token, type: String
    field :reset_password_sent_at, type: Time
  end

  devise :otp_authenticatable, :database_authenticatable, :registerable,
    :trackable, :validatable

  # Setup accessible (or protected) attributes for your model
  # attr_accessible :otp_enabled, :otp_mandatory, :as => :otp_privileged
  # attr_accessible :email, :password, :password_confirmation, :remember_me

  def self.otp_mandatory
    true
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
devise-otp-1.0.0 test/dummy/app/models/admin.rb
devise-otp-0.8.0 test/dummy/app/models/admin.rb
devise-otp-0.7.1 test/dummy/app/models/admin.rb
devise-otp-0.7.0 test/dummy/app/models/admin.rb