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

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

module Clusters
  class InstancePolicy < BasePolicy
    rule { admin }.policy do
      enable :read_cluster
      enable :add_cluster
      enable :create_cluster
      enable :update_cluster
      enable :admin_cluster
      enable :read_prometheus
    end
  end
end

Clusters::InstancePolicy.prepend_mod_with('Clusters::InstancePolicy')