Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-03-20 21:08:18 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-20 21:08:18 +0300
commit96b01499986c01d0c95176860a7606b7616a3836 (patch)
treef394d46a0f7043984ddd5d51f8c408df035a5b89 /lib/gitlab/background_migration
parent849e6f56ae6d29014a6d73f0533144adc9619e87 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/background_migration')
-rw-r--r--lib/gitlab/background_migration/migrate_shared_vulnerability_identifiers.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/gitlab/background_migration/migrate_shared_vulnerability_identifiers.rb b/lib/gitlab/background_migration/migrate_shared_vulnerability_identifiers.rb
new file mode 100644
index 00000000000..6a9f1692b72
--- /dev/null
+++ b/lib/gitlab/background_migration/migrate_shared_vulnerability_identifiers.rb
@@ -0,0 +1,18 @@
+# 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