summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/data_bags_endpoint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/endpoints/data_bags_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/data_bags_endpoint.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/chef_zero/endpoints/data_bags_endpoint.rb b/lib/chef_zero/endpoints/data_bags_endpoint.rb
index 3694602..03791b0 100644
--- a/lib/chef_zero/endpoints/data_bags_endpoint.rb
+++ b/lib/chef_zero/endpoints/data_bags_endpoint.rb
@@ -1,5 +1,5 @@
-require 'ffi_yajl'
-require 'chef_zero/endpoints/rest_list_endpoint'
+require "ffi_yajl"
+require "chef_zero/endpoints/rest_list_endpoint"
module ChefZero
module Endpoints
@@ -11,11 +11,11 @@ module ChefZero
name = identity_keys.map { |k| json[k] }.select { |v| v }.first
if name.nil?
error(400, "Must specify #{identity_keys.map { |k| k.inspect }.join(' or ')} in JSON")
- elsif exists_data_dir?(request, request.rest_path[0..1] + ['data', name])
+ elsif exists_data_dir?(request, request.rest_path[0..1] + ["data", name])
error(409, "Object already exists")
else
- create_data_dir(request, request.rest_path[0..1] + ['data'], name, :recursive)
- json_response(201, {"uri" => "#{build_uri(request.base_uri, request.rest_path + [name])}"})
+ create_data_dir(request, request.rest_path[0..1] + ["data"], name, :recursive)
+ json_response(201, { "uri" => "#{build_uri(request.base_uri, request.rest_path + [name])}" })
end
end
end