X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/67182f824e9ace7d5f6d40691e2d3d120b8fbfea..e01a309970af3b91c0c756e6756180e3762fc108:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 46be25c97..73540ca7f 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -27,6 +27,7 @@ OpenStreetMap::Application.routes.draw do match 'api/0.6/way/:id/history' => 'old_way#history', :via => :get, :id => /\d+/ match 'api/0.6/way/:id/full' => 'way#full', :via => :get, :id => /\d+/ match 'api/0.6/way/:id/relations' => 'relation#relations_for_way', :via => :get, :id => /\d+/ + match 'api/0.6/way/:id/:version/redact' => 'old_way#redact', :via => :post, :version => /\d+/, :id => /\d+/ match 'api/0.6/way/:id/:version' => 'old_way#version', :via => :get, :id => /\d+/, :version => /\d+/ match 'api/0.6/way/:id' => 'way#read', :via => :get, :id => /\d+/ match 'api/0.6/way/:id' => 'way#update', :via => :put, :id => /\d+/ @@ -37,6 +38,7 @@ OpenStreetMap::Application.routes.draw do match 'api/0.6/relation/:id/relations' => 'relation#relations_for_relation', :via => :get, :id => /\d+/ match 'api/0.6/relation/:id/history' => 'old_relation#history', :via => :get, :id => /\d+/ match 'api/0.6/relation/:id/full' => 'relation#full', :via => :get, :id => /\d+/ + match 'api/0.6/relation/:id/:version/redact' => 'old_relation#redact', :via => :post, :version => /\d+/, :id => /\d+/ match 'api/0.6/relation/:id/:version' => 'old_relation#version', :via => :get, :id => /\d+/, :version => /\d+/ match 'api/0.6/relation/:id' => 'relation#read', :via => :get, :id => /\d+/ match 'api/0.6/relation/:id' => 'relation#update', :via => :put, :id => /\d+/