Files
gitlab-foss/lib/gitlab/background_migration/sync_scan_result_policies.rb
2023-09-01 21:10:03 +00:00

15 lines
398 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# Background migration to sync scan result policies from YAML to DB table by kicking off sync Sidekiq jobs
class SyncScanResultPolicies < BatchedMigrationJob
feature_category :security_policy_management
def perform; end
end
end
end
Gitlab::BackgroundMigration::SyncScanResultPolicies.prepend_mod