Sha256: af33bb2570110a71d9be8865a6c4a26e7c3b25f328dcfe3503433e76c5eba33d
Contents?: true
Size: 631 Bytes
Versions: 2
Compression:
Stored size: 631 Bytes
Contents
require 'active_record' module OmniAuth module Identity module Models class ActiveRecord < ::ActiveRecord::Base include OmniAuth::Identity::Model include OmniAuth::Identity::SecurePassword self.abstract_class = true has_secure_password def self.auth_key=(key) super validates_uniqueness_of key, case_sensitive: false end def self.locate(search_hash) search_hash = search_hash.reverse_merge!('provider' => 'identity') if column_names.include?('provider') where(search_hash).first end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
omniauth-identity-3.0.1 | lib/omniauth/identity/models/active_record.rb |
omniauth-identity-3.0.0 | lib/omniauth/identity/models/active_record.rb |