X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cf3cf5216fa3697ad2e3c060fced6a7bbb16f4a4..abbd5a30d41945a41ed5c6c2012793e176f8c28a:/app/controllers/api/relations_controller.rb diff --git a/app/controllers/api/relations_controller.rb b/app/controllers/api/relations_controller.rb index 40d919ddc..9bb3eb87c 100644 --- a/app/controllers/api/relations_controller.rb +++ b/app/controllers/api/relations_controller.rb @@ -11,10 +11,12 @@ 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 - relation = Relation.from_xml(request.raw_post, true) + relation = Relation.from_xml(request.raw_post, :create => true) # Assume that Relation.from_xml has thrown an exception if there is an error parsing the xml relation.create_with_history current_user @@ -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 @@ -94,8 +95,6 @@ module Api nodes = Node.where(:id => node_ids.uniq).includes(:node_tags) visible_nodes = {} - # changeset_cache = {} - # user_display_name_cache = {} @nodes = [] nodes.each do |node| @@ -125,6 +124,7 @@ module Api # Render the result respond_to do |format| format.xml + format.json end else head :gone @@ -143,6 +143,7 @@ module Api # Render the result respond_to do |format| format.xml + format.json end end @@ -172,6 +173,7 @@ module Api # Render the result respond_to do |format| format.xml + format.json end end end