debian-mirror-gitlab/lib/gitlab/cycle_analytics/production_helper.rb

10 lines
210 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module Gitlab
module CycleAnalytics
module ProductionHelper
def stage_query
super.where(mr_metrics_table[:first_deployed_to_production_at].gteq(@options[:from]))
end
end
end
end