]> git.openstreetmap.org Git - rails.git/commitdiff
Move users index route to api namespace
authorAnton Khorev <tony29@yandex.ru>
Fri, 20 Dec 2024 23:24:17 +0000 (02:24 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 27 Dec 2024 02:26:15 +0000 (05:26 +0300)
config/routes.rb

index 0e00da9e3b4f0555b28fd1c06b747b272bf0d5f9..6a47d8a7cf8a809b8880d0acc0fa50b2aec8000d 100644 (file)
@@ -70,10 +70,11 @@ OpenStreetMap::Application.routes.draw do
     get "user/:id" => "users#show", :id => /\d+/, :as => :api_user
     get "user/details" => "users#details"
     get "user/gpx_files" => "users#gpx_files"
-    get "users" => "users#index", :as => :api_users
   end
 
   namespace :api, :path => "api/0.6" do
+    resources :users, :only => :index
+
     resources :user_preferences, :except => [:new, :create, :edit], :param => :preference_key, :path => "user/preferences" do
       collection do
         put "" => "user_preferences#update_all", :as => ""