X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/db3debdd9e5dd09717a7ed144b34158619c85e08..ca4ee6faa9378e7610356e36cbd4931a2657eeed:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 3fe62dcb3..871fef1bf 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -86,12 +86,14 @@ OpenStreetMap::Application.routes.draw do end post "/user/messages/:id" => "messages#update", :as => :api_message_update - - get "gpx/:id/data" => "traces#data", :as => :api_trace_data end namespace :api, :path => "api/0.6" do - resources :traces, :path => "gpx", :only => [:create, :show, :update, :destroy], :id => /\d+/ + resources :traces, :path => "gpx", :only => [:create, :show, :update, :destroy], :id => /\d+/ do + scope :module => :traces do + resource :data, :only => :show + end + end post "gpx/create" => "traces#create", :id => /\d+/, :as => :trace_create get "gpx/:id/details" => "traces#show", :id => /\d+/, :as => :trace_details