put "" => "user_preferences#update_all", :as => ""
end
end
+ end
- resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :destroy], :controller => "messages", :as => :api_messages do
+ namespace :api, :path => "api/0.6" do
+ resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :update, :destroy] do
collection do
get "inbox"
get "outbox"
end
end
+ post "/user/messages/:id" => "messages#update"
- post "/user/messages/:id" => "messages#update", :as => :api_message_update
- end
-
- namespace :api, :path => "api/0.6" do
resources :traces, :path => "gpx", :only => [:create, :show, :update, :destroy], :id => /\d+/ do
scope :module => :traces do
resource :data, :only => :show
match "/user/:display_name/remove_friend" => "friendships#remove_friend", :via => [:get, :post], :as => "remove_friend"
# user lists
- match "/users" => "users#index", :via => [:get, :post]
- match "/users/:status" => "users#index", :via => [:get, :post]
+ namespace :users do
+ resource :list, :path => "(:status)", :only => [:show, :update]
+ end
# geocoder
get "/search" => "geocoder#search"