summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/migrate_shared_vulnerability_scanners.rb
blob: bea0120f09328624a8d6c570d2fc7400033d1ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class MigrateSharedVulnerabilityScanners < BatchedMigrationJob
      def perform
      end
    end
    # rubocop: enable Style/Documentation
  end
end

# rubocop: disable Layout/LineLength
Gitlab::BackgroundMigration::MigrateSharedVulnerabilityScanners.prepend_mod_with("Gitlab::BackgroundMigration::MigrateSharedVulnerabilityScanners")
# rubocop: enable Layout/LineLength