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

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

module Gitlab
  module BackgroundMigration
    class PopulateStatusColumnOfSecurityScans # rubocop:disable Style/Documentation
      def perform(_start_id, _end_id)
        # no-op
      end
    end
  end
end

Gitlab::BackgroundMigration::PopulateStatusColumnOfSecurityScans.prepend_mod