X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/01aa27031526280d8b1d219902a7b4c97617d19f..458402813cfc14d9e1cbca890b238ce78ee72357:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index cadf37625..2c57f11ca 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -79,6 +79,15 @@ ActionController::Routing::Routes.draw do |map| map.connect "api/#{API_VERSION}/bugs/getGPX", :controller =>'map_bugs', :action =>'gpx_bugs' map.connect "api/#{API_VERSION}/bugs/getRSSfeed", :controller =>'map_bugs', :action =>'rss' + map.connect "api/#{API_VERSION}/bugs", :controller => 'map_bugs', :action => 'get_bugs' + map.connect "api/#{API_VERSION}/bugs/search", :controller => 'map_bugs', :action => 'search' + map.connect "api/#{API_VERSION}/bug/create", :controller => 'map_bugs', :action => 'add_bug' + map.connect "api/#{API_VERSION}/bug/:id/comment", :controller => 'map_bugs', :action => 'edit_bug', :id => /\d+/ + map.connect "api/#{API_VERSION}/bug/:id/close", :controller => 'map_bugs', :action => 'close_bug', :id => /\d+/ + map.connect "api/#{API_VERSION}/bug/:id", :controller => 'map_bugs', :action => 'read', :id => /\d+/, :conditions => { :method => :get } + map.connect "api/#{API_VERSION}/bug/:id", :controller => 'map_bugs', :action => 'delete', :id => /\d+/, :conditions => { :method => :delete } + + # Data browsing map.connect '/browse', :controller => 'changeset', :action => 'list'