debian-mirror-gitlab/lib/gitlab/cycle_analytics/code_helper.rb
2019-09-04 21:01:54 +05:30

12 lines
267 B
Ruby

# 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