Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_security_setting.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55b37bb03b5adf1e5f3c8529276a552ac7765a4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # This class doesn't create SecuritySetting
    # as this feature exists only in EE
    class CreateSecuritySetting
      def perform(_from_id, _to_id)
      end
    end
  end
end

Gitlab::BackgroundMigration::CreateSecuritySetting.prepend_mod_with('Gitlab::BackgroundMigration::CreateSecuritySetting')