Welcome to mirror list, hosted at ThFree Co, Russian Federation.

production_helper.rb « cycle_analytics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a889b3877f2113e404c494cd92022bc79a1ad53 (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 Gitlab/ModuleWithInstanceVariables
      end
    end
  end
end