]> 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 bf3fcdb39ee1a725f814cefa25d17727eb52b4bd..b68fde6b55bd5a72e9c101e6d11a5f385d48ea4e 100644 (file)
@@ -16,23 +16,25 @@ 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
       # to do that ourselves.
       raise OSM::APINotFoundError if @elements.empty?
 
-      visible_elements = if show_redactions?
-                           @elements
-                         else
-                           @elements.unredacted
-                         end
-
-      @elems = visible_elements
+      # determine visible elements
+      @elems = if show_redactions?
+                 @elements
+               else
+                 @elements.unredacted
+               end
 
       # Render the result
       respond_to do |format|
         format.xml
+        format.json
       end
     end
 
@@ -46,6 +48,7 @@ module Api
         # Render the result
         respond_to do |format|
           format.xml
+          format.json
         end
       end
     end