Module: OmniAuth::Identity::Models::Mongoid
- Defined in:
- lib/omniauth/identity/models/mongoid.rb
Overview
Mongoid is an ORM adapter for MongoDB:
https://github.com/mongodb/mongoid
NOTE: Mongoid is based on ActiveModel.
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/omniauth/identity/models/mongoid.rb', line 12 def self.included(base) base.class_eval do include(::OmniAuth::Identity::Model) include(::OmniAuth::Identity::SecurePassword) # validations: true (default) incurs a dependency on ActiveModel, but Mongoid is ActiveModel based. has_secure_password def self.auth_key=(key) super validates_uniqueness_of(key, case_sensitive: false) end def self.locate(search_hash) where(search_hash).first end end end |