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

value_streams_controller.rb « cycle_analytics « analytics « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f58730f1d333d84951d754f4324a9fac897c8c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class Projects::Analytics::CycleAnalytics::ValueStreamsController < Projects::ApplicationController
  include ::Analytics::CycleAnalytics::ValueStreamActions

  respond_to :json

  feature_category :planning_analytics
  urgency :low

  private

  def namespace
    project.project_namespace
  end
end