X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/67dd9e4c9d487bdb5f38a09dc0c99def4989326e..67182f824e9ace7d5f6d40691e2d3d120b8fbfea:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 823c00950..46be25c97 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -16,7 +16,7 @@ OpenStreetMap::Application.routes.draw do match 'api/0.6/node/:id/ways' => 'way#ways_for_node', :via => :get, :id => /\d+/ match 'api/0.6/node/:id/relations' => 'relation#relations_for_node', :via => :get, :id => /\d+/ match 'api/0.6/node/:id/history' => 'old_node#history', :via => :get, :id => /\d+/ - match 'api/0.6/node/:id/:version/redact' => 'old_node#redact', :version => /\d+/, :id => /\d+/ + match 'api/0.6/node/:id/:version/redact' => 'old_node#redact', :via => :post, :version => /\d+/, :id => /\d+/ match 'api/0.6/node/:id/:version' => 'old_node#version', :via => :get, :id => /\d+/, :version => /\d+/ match 'api/0.6/node/:id' => 'node#read', :via => :get, :id => /\d+/ match 'api/0.6/node/:id' => 'node#update', :via => :put, :id => /\d+/