]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api/old_controller.rb
Move default_format_xml to api_controller
[rails.git] / app / controllers / api / old_controller.rb
index 49fdcf1a3b4c13f13f8427e5336620753b95ed4d..b68fde6b55bd5a72e9c101e6d11a5f385d48ea4e 100644 (file)
@@ -16,6 +16,8 @@ module Api
     before_action :lookup_old_element, :except => [:history]
     before_action :lookup_old_element_versions, :only => [:history]
 
+    before_action :default_format_xml
+
     def history
       # the .where() method used in the lookup_old_element_versions
       # call won't throw an error if no records are found, so we have
@@ -32,6 +34,7 @@ module Api
       # Render the result
       respond_to do |format|
         format.xml
+        format.json
       end
     end
 
@@ -45,6 +48,7 @@ module Api
         # Render the result
         respond_to do |format|
           format.xml
+          format.json
         end
       end
     end