X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b9ae40d9784725b75e5b52f55659c80326656d8f..3cfffc2258621558e1147ceaf63980a7f6ed414b:/app/controllers/api/ways_controller.rb diff --git a/app/controllers/api/ways_controller.rb b/app/controllers/api/ways_controller.rb index 102be29bd..9af087d83 100644 --- a/app/controllers/api/ways_controller.rb +++ b/app/controllers/api/ways_controller.rb @@ -22,17 +22,13 @@ module Api end def show - way = Way.find(params[:id]) - - response.last_modified = way.timestamp + @way = Way.find(params[:id]) - if way.visible - @way = way + response.last_modified = @way.timestamp + if @way.visible # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] else head :gone end @@ -64,26 +60,22 @@ module Api end def full - way = Way.includes(:nodes => :node_tags).find(params[:id]) + @way = Way.includes(:nodes => :node_tags).find(params[:id]) - if way.visible + if @way.visible visible_nodes = {} @nodes = [] - way.nodes.uniq.each do |node| + @way.nodes.uniq.each do |node| if node.visible @nodes << node visible_nodes[node.id] = node end end - @way = way - # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] else head :gone end @@ -101,9 +93,7 @@ module Api @ways = Way.find(ids) # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] end ## @@ -116,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