X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/94a48482e0bef11bdaf11f0200b4296ee8fabf23..f4e29905263efbb2eafdedad6a5c050ba559efd8:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index b245e8fec..3c0cf61f1 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,16 +1,18 @@ OpenStreetMap::Application.routes.draw do # API - get "api/capabilities" => "api#capabilities" + namespace :api do + get "capabilities" => "capabilities#show" + end scope "api/0.6" do - get "capabilities" => "api#capabilities" - get "permissions" => "api#permissions" + get "capabilities" => "api/capabilities#show" + get "permissions" => "api/permissions#show" put "changeset/create" => "changesets#create" post "changeset/:id/upload" => "changesets#upload", :id => /\d+/ get "changeset/:id/download" => "changesets#download", :as => :changeset_download, :id => /\d+/ post "changeset/:id/expand_bbox" => "changesets#expand_bbox", :id => /\d+/ - get "changeset/:id" => "changesets#read", :as => :changeset_read, :id => /\d+/ + get "changeset/:id" => "changesets#show", :as => :changeset_show, :id => /\d+/ post "changeset/:id/subscribe" => "changesets#subscribe", :as => :changeset_subscribe, :id => /\d+/ post "changeset/:id/unsubscribe" => "changesets#unsubscribe", :as => :changeset_unsubscribe, :id => /\d+/ put "changeset/:id" => "changesets#update", :id => /\d+/ @@ -26,10 +28,10 @@ OpenStreetMap::Application.routes.draw do get "node/:id/history" => "old_nodes#history", :id => /\d+/ post "node/:id/:version/redact" => "old_nodes#redact", :version => /\d+/, :id => /\d+/ get "node/:id/:version" => "old_nodes#version", :id => /\d+/, :version => /\d+/ - get "node/:id" => "nodes#read", :id => /\d+/ + get "node/:id" => "nodes#show", :id => /\d+/ put "node/:id" => "nodes#update", :id => /\d+/ delete "node/:id" => "nodes#delete", :id => /\d+/ - get "nodes" => "nodes#nodes" + get "nodes" => "nodes#index" put "way/create" => "ways#create" get "way/:id/history" => "old_ways#history", :id => /\d+/ @@ -37,10 +39,10 @@ OpenStreetMap::Application.routes.draw do get "way/:id/relations" => "relations#relations_for_way", :id => /\d+/ post "way/:id/:version/redact" => "old_ways#redact", :version => /\d+/, :id => /\d+/ get "way/:id/:version" => "old_ways#version", :id => /\d+/, :version => /\d+/ - get "way/:id" => "ways#read", :id => /\d+/ + get "way/:id" => "ways#show", :id => /\d+/ put "way/:id" => "ways#update", :id => /\d+/ delete "way/:id" => "ways#delete", :id => /\d+/ - get "ways" => "ways#ways" + get "ways" => "ways#index" put "relation/create" => "relations#create" get "relation/:id/relations" => "relations#relations_for_relation", :id => /\d+/ @@ -48,16 +50,16 @@ OpenStreetMap::Application.routes.draw do get "relation/:id/full" => "relations#full", :id => /\d+/ post "relation/:id/:version/redact" => "old_relations#redact", :version => /\d+/, :id => /\d+/ get "relation/:id/:version" => "old_relations#version", :id => /\d+/, :version => /\d+/ - get "relation/:id" => "relations#read", :id => /\d+/ + get "relation/:id" => "relations#show", :id => /\d+/ put "relation/:id" => "relations#update", :id => /\d+/ delete "relation/:id" => "relations#delete", :id => /\d+/ - get "relations" => "relations#relations" + get "relations" => "relations#index" - get "map" => "api#map" + get "map" => "api/map#index" - get "trackpoints" => "api#trackpoints" + get "trackpoints" => "api/tracepoints#index" - get "changes" => "api#changes" + get "changes" => "api/changes#index" get "search" => "search#search_all", :as => "api_search" get "ways/search" => "search#search_ways"