X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/79c306ad06155549ff6e5929ff20a1149b4862c4..7d4cc85a312cb79fd1c4b0f22626722bea1d736d:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 77b439865..4d3c1bf55 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -77,17 +77,17 @@ OpenStreetMap::Application.routes.draw do put "" => "user_preferences#update_all", :as => "" end end + end - resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :update, :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" - 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