summaryrefslogtreecommitdiff
path: root/lib/chef_zero/chef_data/acl_path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/chef_data/acl_path.rb')
-rw-r--r--lib/chef_zero/chef_data/acl_path.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef_zero/chef_data/acl_path.rb b/lib/chef_zero/chef_data/acl_path.rb
index dd162bd..6286287 100644
--- a/lib/chef_zero/chef_data/acl_path.rb
+++ b/lib/chef_zero/chef_data/acl_path.rb
@@ -104,14 +104,13 @@ module ChefZero
end
end
- private
-
# /acls/root -> nil
# /acls/containers/containers -> /acls/root
# /acls/TYPE/X -> /acls/containers/TYPE
#
# Method *assumes* acl_data_path is valid.
# Returns nil if the path is /acls/root
+ private_class_method
def self.partition_parent_acl_data_path(acl_data_path)
if acl_data_path.size == 3
if acl_data_path == %w{acls containers containers}
@@ -124,6 +123,7 @@ module ChefZero
end
end
+ private_class_method
def self.partition_acl_data_path(path, data_types)
if path.size == 0
%w{acls root}