debian-mirror-gitlab/lib/gitlab/background_migration/backfill_compliance_violations.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
467 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# 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