]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api/ways_controller.rb
Rubocop
[rails.git] / app / controllers / api / ways_controller.rb
index 0871384a7289030397ee3eddff3d97d87ccdf297..9af087d83a31fb06de92ce0a5718f9aa10225cd7 100644 (file)
@@ -28,9 +28,7 @@ module Api
 
       if @way.visible
         # Render the result
-        respond_to do |format|
-          format.xml
-        end
+        render :formats => [:xml]
       else
         head :gone
       end
@@ -77,9 +75,7 @@ module Api
         end
 
         # Render the result
-        respond_to do |format|
-          format.xml
-        end
+        render :formats => [:xml]
       else
         head :gone
       end
@@ -97,9 +93,7 @@ module Api
       @ways = Way.find(ids)
 
       # Render the result
-      respond_to do |format|
-        format.xml
-      end
+      render :formats => [:xml]
     end
 
     ##
@@ -112,9 +106,7 @@ module Api
       @ways = Way.where(:id => wayids, :visible => true)
 
       # Render the result
-      respond_to do |format|
-        format.xml
-      end
+      render :formats => [:xml]
     end
   end
 end