X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b9ae40d9784725b75e5b52f55659c80326656d8f..b5c778b662730d5c26230c0ee1f1323ca5e0049c:/app/controllers/api/relations_controller.rb diff --git a/app/controllers/api/relations_controller.rb b/app/controllers/api/relations_controller.rb index 41f4e325a..28e4a026b 100644 --- a/app/controllers/api/relations_controller.rb +++ b/app/controllers/api/relations_controller.rb @@ -11,6 +11,8 @@ module Api before_action :check_api_readable, :except => [:create, :update, :delete] around_action :api_call_handle_error, :api_call_timeout + before_action :set_request_formats, :except => [:create, :update, :delete] + def create assert_method :put @@ -22,14 +24,13 @@ 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 + format.json end else head :gone @@ -123,6 +124,7 @@ module Api # Render the result respond_to do |format| format.xml + format.json end else head :gone @@ -141,6 +143,7 @@ module Api # Render the result respond_to do |format| format.xml + format.json end end @@ -170,6 +173,7 @@ module Api # Render the result respond_to do |format| format.xml + format.json end end end