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

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

module Gitlab
  module BackgroundMigration
    # Updates the range of given MRs to merge_status "unchecked", if they're opened
    # and mergeable.
    class ResetMergeStatus
      def perform(from_id, to_id)
        relation = MergeRequest.where(id: from_id..to_id,
                                      state: 'opened',
                                      merge_status: 'can_be_merged')

        relation.update_all(merge_status: 'unchecked')
      end
    end
  end
end