mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
18 lines
477 B
Ruby
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
|