summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/backfill_compliance_violations.rb
blob: 131b4a05e413bbcd2d5a35317746be16d2cfb683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class BackfillComplianceViolations < Gitlab::BackgroundMigration::BatchedMigrationJob
      feature_category :compliance_management

      def perform
        # no-op. The logic is defined in EE module.
      end
    end
    # rubocop: enable Style/Documentation
  end
end

::Gitlab::BackgroundMigration::BackfillComplianceViolations.prepend_mod