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

clusters_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ead02a7aa8cc8d5b2c38805b4643ecadb88fa15d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class Admin::ClustersController < ::Clusters::ClustersController
  include EnforcesAdminAuthentication
  before_action :ensure_feature_enabled!

  layout 'admin'

  private

  def clusterable
    @clusterable ||= InstanceClusterablePresenter.fabricate(Clusters::Instance.new, current_user: current_user)
  end

  def metrics_dashboard_params
    {
      cluster: cluster,
      cluster_type: :admin
    }
  end
end