gitlab-org--gitlab-foss/app/models/identity.rb

26 lines
566 B
Ruby
Raw Normal View History

2015-01-22 17:40:03 +00: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 22:14:00 +00:00
# created_at :datetime
# updated_at :datetime
2015-01-22 17:40:03 +00:00
#
class Identity < ActiveRecord::Base
include Sortable
include CaseSensitivity
belongs_to :user
validates :provider, presence: true
validates :extern_uid, allow_blank: true, uniqueness: { scope: :provider }
2015-04-11 14:56:45 +00:00
validates :user_id, uniqueness: { scope: :provider }
def is_ldap?
provider.starts_with?('ldap')
end
2015-01-22 17:40:03 +00:00
end