X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/45a1d298a941939d4a5e7da273d9394a16d8c5f1..d02b8d9f1ed9b99651cdffae69b8c70e533d5517:/app/controllers/api/nodes_controller.rb diff --git a/app/controllers/api/nodes_controller.rb b/app/controllers/api/nodes_controller.rb index 08f19008f..62eb76505 100644 --- a/app/controllers/api/nodes_controller.rb +++ b/app/controllers/api/nodes_controller.rb @@ -13,13 +13,13 @@ module Api before_action :check_api_readable, :except => [:create, :update, :delete] around_action :api_call_handle_error, :api_call_timeout - before_action :default_format_xml + before_action :set_request_formats, :except => [:create, :update, :delete] # Create a node from XML. def create assert_method :put - node = Node.from_xml(request.raw_post, true) + node = Node.from_xml(request.raw_post, :create => true) # Assume that Node.from_xml has thrown an exception if there is an error parsing the xml node.create_with_history current_user