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

cycle_analytics_helper.rb « analytics « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c43ac545bf88b13b5230df5fbf11fa9a07eaabb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Analytics
  module CycleAnalyticsHelper
    def cycle_analytics_default_stage_config
      Gitlab::Analytics::CycleAnalytics::DefaultStages.all.map do |stage_params|
        Analytics::CycleAnalytics::StagePresenter.new(stage_params)
      end
    end
  end
end