X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f41f16d450d29f16070dddad63547666817c4cbb..1bee96ede16e1dab41ad82efb9f2486da68a642f:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index cf5a38066..871fef1bf 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -86,13 +86,15 @@ OpenStreetMap::Application.routes.draw do end post "/user/messages/:id" => "messages#update", :as => :api_message_update - - post "gpx/create" => "traces#create" - get "gpx/:id/data" => "traces#data", :as => :api_trace_data end namespace :api, :path => "api/0.6" do - resources :traces, :path => "gpx", :only => [: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 # Map notes API