X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/458402813cfc14d9e1cbca890b238ce78ee72357..c3bf919e3e8d20503c1ef39f87d674d1adf31553:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 2c57f11ca..5975f48b7 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -81,11 +81,14 @@ ActionController::Routing::Routes.draw do |map| 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}/bugs/rss", :controller =>'map_bugs', :action =>'rss' 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 } + + map.connect '/user/:display_name/bugs', :controller => 'map_bugs', :action => 'my_bugs'