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

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

15 lines
363 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
# rubocop:disable Style/Documentation
module Gitlab
module BackgroundMigration
class CreateVulnerabilityLinks < BatchedMigrationJob
feature_category :vulnerability_management
def perform; end
end
end
end
Gitlab::BackgroundMigration::CreateVulnerabilityLinks.prepend_mod
# rubocop:enable Style/Documentation