debian-mirror-gitlab/app/models/identity/uniqueness_scopes.rb
2019-02-15 15:39:39 +05:30

11 lines
298 B
Ruby

# frozen_string_literal: true
class Identity < ActiveRecord::Base
# This module and method are defined in a separate file to allow EE to
# redefine the `scopes` method before it is used in the `Identity` model.
module UniquenessScopes
def self.scopes
[:provider]
end
end
end