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

module Gitlab
  module CycleAnalytics
    module CodeHelper
      def stage_query(project_ids)
        super(project_ids).where(mr_table[:created_at].gteq(issue_metrics_table[:first_mentioned_in_commit_at]))
      end
    end
  end
end