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

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

19 lines
551 B
Ruby
Raw Normal View History

2023-06-20 00:43:36 +05:30
# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# rubocop: disable Style/Documentation
class MigrateSharedVulnerabilityIdentifiers < BatchedMigrationJob
# rubocop: enable Style/Documentation
feature_category :vulnerability_management
def perform; end
end
end
end
# rubocop: disable Layout/LineLength
Gitlab::BackgroundMigration::MigrateSharedVulnerabilityIdentifiers.prepend_mod_with("Gitlab::BackgroundMigration::MigrateSharedVulnerabilityIdentifiers")
# rubocop: enable Layout/LineLength