debian-mirror-gitlab/app/policies/clusters/cluster_policy.rb

15 lines
276 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Clusters
class ClusterPolicy < BasePolicy
alias_method :cluster, :subject
delegate { cluster.project }
2018-11-18 11:00:15 +05:30
rule { can?(:maintainer_access) }.policy do
2018-03-17 18:26:18 +05:30
enable :update_cluster
enable :admin_cluster
end
end
end