]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api/nodes_controller.rb
Move default_format_xml to api_controller
[rails.git] / app / controllers / api / nodes_controller.rb
index 8a8068e7eeea2e6c131604374bcb285a83e49ba5..08f19008f730dc931e251b421ba2ca4dca134ca3 100644 (file)
@@ -13,6 +13,8 @@ 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
+
     # Create a node from XML.
     def create
       assert_method :put
@@ -32,7 +34,10 @@ module Api
 
       if @node.visible
         # Render the result
-        render formats: [:xml]
+        respond_to do |format|
+          format.xml
+          format.json
+        end
       else
         head :gone
       end
@@ -73,7 +78,10 @@ module Api
       @nodes = Node.find(ids)
 
       # Render the result
-      render formats: [:xml]
+      respond_to do |format|
+        format.xml
+        format.json
+      end
     end
   end
 end