2015-04-26 12:48:37 +05:30
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: identities
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# extern_uid :string(255)
|
|
|
|
# provider :string(255)
|
|
|
|
# user_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
|
|
|
|
class Identity < ActiveRecord::Base
|
|
|
|
include Sortable
|
2016-01-14 18:37:52 +05:30
|
|
|
include CaseSensitivity
|
2015-04-26 12:48:37 +05:30
|
|
|
belongs_to :user
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
validates :provider, presence: true
|
2015-04-26 12:48:37 +05:30
|
|
|
validates :extern_uid, allow_blank: true, uniqueness: { scope: :provider }
|
|
|
|
validates :user_id, uniqueness: { scope: :provider }
|
2016-01-19 16:12:03 +05:30
|
|
|
|
|
|
|
def ldap?
|
|
|
|
provider.starts_with?('ldap')
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|