2016-12-09 06:41:15 -05:00
|
|
|
module Gitlab
|
|
|
|
module CycleAnalytics
|
|
|
|
module ProductionHelper
|
|
|
|
def stage_query
|
2017-11-17 07:27:16 -05:00
|
|
|
super
|
|
|
|
.where(mr_metrics_table[:first_deployed_to_production_at]
|
2017-11-22 02:50:36 -05:00
|
|
|
.gteq(@options[:from])) # rubocop:disable Gitlab/ModuleWithInstanceVariables
|
2016-12-09 06:41:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|