2018-07-24 06:00:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-23 04:36:35 -04:00
|
|
|
module Clusters
|
2017-10-03 10:44:06 -04:00
|
|
|
class ClusterPolicy < BasePolicy
|
|
|
|
alias_method :cluster, :subject
|
|
|
|
|
2018-10-14 20:42:02 -04:00
|
|
|
delegate { cluster.group }
|
2017-10-23 04:36:35 -04:00
|
|
|
delegate { cluster.project }
|
2017-10-03 10:44:06 -04:00
|
|
|
end
|
|
|
|
end
|