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

code_helper.rb « cycle_analytics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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