lib/gitlab/cycle_analytics/review_helper.rb (9 lines of code) (raw):

# 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