X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/990f3eba4069f98a11d98f18b18d0e35bcf295f4..dd65315136084770dbcbcce4f08cdee8e683af66:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 3cfba03b9..bc4c12c97 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -38,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+/ @@ -228,4 +229,7 @@ OpenStreetMap::Application.routes.draw do match '/blocks/new/:display_name' => 'user_blocks#new', :via => :get, :as => "new_user_block" resources :user_blocks match '/blocks/:id/revoke' => 'user_blocks#revoke', :via => [:get, :post], :as => "revoke_user_block" + + # redactions + resources :redactions end