lib/chef-api/resources/group.rb in chef-api-0.10.0 vs lib/chef-api/resources/group.rb in chef-api-0.10.2
- old
+ new
@@ -1,8 +1,8 @@
module ChefAPI
class Resource::Group < Resource::Base
- collection_path '/groups'
+ collection_path "/groups"
schema do
attribute :groupname, type: String, primary: true, required: true
attribute :name, type: String
attribute :orgname, type: String
@@ -11,6 +11,5 @@
attribute :clients, type: Array, default: []
attribute :groups, type: Array, default: []
end
end
end
-