Move users index route to api namespace
This commit is contained in:
parent
99af52b478
commit
91de69bc17
1 changed files with 2 additions and 1 deletions
|
@ -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 => ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue