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

dismissed_vulnerabilities_strategy.rb « batching_strategies « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9504d4eec11e5d0ad47dd80283e2503df30fc77c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    module BatchingStrategies
      # Used to apply additional filters to the batching table, migrated to
      # use BatchedMigrationJob#filter_batch with https://gitlab.com/gitlab-org/gitlab/-/merge_requests/93771
      class DismissedVulnerabilitiesStrategy < PrimaryKeyBatchingStrategy
      end
    end
  end
end