summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/policy_revisions_endpoint.rb
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2015-12-04 16:05:31 -0800
committerChris Doherty <cdoherty@chef.io>2015-12-07 14:33:18 -0800
commit7ad8a34c9b1100a932374a12e567c7d077622e48 (patch)
tree10812f7217e26e65f02bf37761b5baacee50d905 /lib/chef_zero/endpoints/policy_revisions_endpoint.rb
parent82407750aa4b872c73baeae8afce42465b870a48 (diff)
downloadchef-zero-7ad8a34c9b1100a932374a12e567c7d077622e48.tar.gz
Split policy endpoints into separate endpoints
Diffstat (limited to 'lib/chef_zero/endpoints/policy_revisions_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/policy_revisions_endpoint.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/chef_zero/endpoints/policy_revisions_endpoint.rb b/lib/chef_zero/endpoints/policy_revisions_endpoint.rb
new file mode 100644
index 0000000..7c20a24
--- /dev/null
+++ b/lib/chef_zero/endpoints/policy_revisions_endpoint.rb
@@ -0,0 +1,15 @@
+require 'chef_zero/chef_data/data_normalizer'
+
+module ChefZero
+ module Endpoints
+ # /organizations/ORG/policies/NAME/revisions
+ class PolicyRevisionsEndpoint < RestBase
+ # POST /organizations/ORG/policies/NAME/revisions
+ def post(request)
+ policyfile_data = parse_json(request.body)
+ create_data(request, request.rest_path, policyfile_data["revision_id"], request.body, :create_dir)
+ return already_json_response(201, request.body)
+ end
+ end
+ end
+end