X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b9ae40d9784725b75e5b52f55659c80326656d8f..0db30c611a99d62381217d86c5a0bd9d104efb42:/app/controllers/api/relations_controller.rb?ds=sidebyside diff --git a/app/controllers/api/relations_controller.rb b/app/controllers/api/relations_controller.rb index 41f4e325a..ba0dd0c6b 100644 --- a/app/controllers/api/relations_controller.rb +++ b/app/controllers/api/relations_controller.rb @@ -22,15 +22,11 @@ module Api end def show - relation = Relation.find(params[:id]) - response.last_modified = relation.timestamp - if relation.visible - @relation = relation - + @relation = Relation.find(params[:id]) + response.last_modified = @relation.timestamp + if @relation.visible # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] else head :gone end @@ -121,9 +117,7 @@ module Api @relations << relation # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] else head :gone end @@ -139,9 +133,7 @@ module Api @relations = Relation.find(ids) # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] end def relations_for_way @@ -168,9 +160,7 @@ module Api end # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] end end end