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

14 lines
328 B
Ruby
Raw Normal View History

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 }
2016-01-12 14:29:10 +00:00
def ldap?
provider.starts_with?('ldap')
end
2015-01-22 17:40:03 +00:00
end