summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/review_helper.rb
blob: c53249652b5c4145694d234c61f18d713c83a664 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab
  module CycleAnalytics
    module ReviewHelper
      def stage_query(project_ids)
        super(project_ids).where(mr_metrics_table[:merged_at].not_eq(nil))
      end
    end
  end
end