Files
gitlab-foss/lib/gitlab/background_migration/delete_expired_vulnerability_exports.rb
2025-06-12 09:10:12 +00:00

18 lines
477 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# This batched background migration is EE-only.
# See: ee/lib/ee/gitlab/background_migration/delete_expired_vulnerability_exports.rb
class DeleteExpiredVulnerabilityExports < BatchedMigrationJob
feature_category :vulnerability_management
def perform
# No-op in FOSS
end
end
end
end
Gitlab::BackgroundMigration::DeleteExpiredVulnerabilityExports.prepend_mod