summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/production_helper.rb
blob: ebbff1b2f332951a174a43bda6046c54f4035d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
module Gitlab
  module CycleAnalytics
    module ProductionHelper
      def stage_query
        super
          .where(mr_metrics_table[:first_deployed_to_production_at]
          .gteq(@options[:from])) # rubocop:disable Cop/ModuleWithInstanceVariables
      end
    end
  end
end