2018-11-05 23:45:35 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-09 06:41:15 -05:00
|
|
|
module Gitlab
|
|
|
|
module CycleAnalytics
|
|
|
|
module ProductionHelper
|
2018-02-13 10:42:49 -05:00
|
|
|
def stage_query(project_ids)
|
2018-02-12 07:24:42 -05:00
|
|
|
super(project_ids)
|
2017-11-17 07:27:16 -05:00
|
|
|
.where(mr_metrics_table[:first_deployed_to_production_at]
|
2019-07-10 07:22:29 -04:00
|
|
|
.gteq(options[:from]))
|
2016-12-09 06:41:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|