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

create_vulnerability_links.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbc71dfb392e14dc67f7033a6d1c1770c494973a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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