2015-01-22 12:40:03 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: identities
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# extern_uid :string(255)
|
|
|
|
# provider :string(255)
|
|
|
|
# user_id :integer
|
2015-03-04 17:14:00 -05:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2015-01-22 12:40:03 -05:00
|
|
|
#
|
|
|
|
|
2014-11-25 11:15:30 -05:00
|
|
|
class Identity < ActiveRecord::Base
|
2015-02-05 17:20:55 -05:00
|
|
|
include Sortable
|
2015-12-22 13:00:41 -05:00
|
|
|
include CaseSensitivity
|
2014-11-25 11:15:30 -05:00
|
|
|
belongs_to :user
|
|
|
|
|
2015-06-23 05:21:23 -04:00
|
|
|
validates :provider, presence: true
|
2015-02-02 23:36:54 -05:00
|
|
|
validates :extern_uid, allow_blank: true, uniqueness: { scope: :provider }
|
2015-04-11 10:56:45 -04:00
|
|
|
validates :user_id, uniqueness: { scope: :provider }
|
2016-01-06 02:38:52 -05:00
|
|
|
|
2016-01-12 09:29:10 -05:00
|
|
|
def ldap?
|
2016-01-06 02:38:52 -05:00
|
|
|
provider.starts_with?('ldap')
|
|
|
|
end
|
2015-01-22 12:40:03 -05:00
|
|
|
end
|