summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/create_security_setting.rb
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')