]> git.openstreetmap.org Git - rails.git/commitdiff
Move notes and blocks resources to api namespace
authorAnton Khorev <tony29@yandex.ru>
Fri, 26 Jul 2024 00:01:08 +0000 (03:01 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 26 Jul 2024 00:01:08 +0000 (03:01 +0300)
config/routes.rb

index 12f6325ae3d78acce9469195f084a4776804e4c9..c832cbb35866fcbfb0f22073e56f8ef5b05fa7b3 100644 (file)
@@ -84,9 +84,11 @@ OpenStreetMap::Application.routes.draw do
     delete "gpx/:id" => "traces#destroy", :id => /\d+/
     get "gpx/:id/details" => "traces#show", :id => /\d+/
     get "gpx/:id/data" => "traces#data", :as => :api_trace_data
+  end
 
+  namespace :api, :path => "api/0.6" do
     # Map notes API
-    resources :notes, :except => [:new, :edit, :update], :constraints => { :id => /\d+/ }, :controller => "notes", :as => :api_notes do
+    resources :notes, :except => [:new, :edit, :update], :id => /\d+/, :controller => "notes" do
       collection do
         get "search"
         get "feed", :defaults => { :format => "rss" }
@@ -99,7 +101,7 @@ OpenStreetMap::Application.routes.draw do
       end
     end
 
-    resources :user_blocks, :only => [:show], :constraints => { :id => /\d+/ }, :controller => "user_blocks", :as => :api_user_blocks
+    resources :user_blocks, :only => :show, :id => /\d+/, :controller => "user_blocks"
   end
 
   # Data browsing