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

summary_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: bf8742bf6e8738bfc138cdc06cabba8016186bad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

class Projects::Analytics::CycleAnalytics::SummaryController < Projects::ApplicationController
  include CycleAnalyticsParams

  respond_to :json

  feature_category :planning_analytics

  before_action :authorize_read_cycle_analytics!

  def show
    render json: project_level.summary
  end

  private

  def project_level
    @project_level ||= Analytics::CycleAnalytics::ProjectLevel.new(project: @project, options: options(allowed_params))
  end

  def allowed_params
    request_params.to_data_collector_params
  end
end

Projects::Analytics::CycleAnalytics::SummaryController.prepend_mod_with('Projects::Analytics::CycleAnalytics::SummaryController')