11 lines
311 B
Ruby
11 lines
311 B
Ruby
module Gitlab
|
|
module CycleAnalytics
|
|
module ProductionHelper
|
|
def stage_query(project_ids)
|
|
super(project_ids)
|
|
.where(mr_metrics_table[:first_deployed_to_production_at]
|
|
.gteq(@options[:from])) # rubocop:disable Gitlab/ModuleWithInstanceVariables
|
|
end
|
|
end
|
|
end
|
|
end
|