summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-11-20 14:17:43 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-11-20 14:17:43 +0000
commit053adaef52d795e5a3ef134381dd378e40856775 (patch)
tree3d467d8e9ed996a4f1495ac3c2443a1517f9451d /config
parent8b5b928b9236f09f029915d755bde23b3e8fabb5 (diff)
downloadredmine-053adaef52d795e5a3ef134381dd378e40856775.tar.gz
redmine-053adaef52d795e5a3ef134381dd378e40856775.zip
Adds API response to /trackers to get the list of all available trackers (#7181).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7877 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index f5814e0ac..209db1e89 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -227,6 +227,7 @@ ActionController::Routing::Routes.draw do |map|
map.resources :groups
#left old routes at the bottom for backwards compat
+ map.connect 'trackers.:format', :controller => 'trackers', :action => 'index'
map.connect 'projects/:project_id/issues/:action', :controller => 'issues'
map.connect 'projects/:project_id/documents/:action', :controller => 'documents'
map.connect 'projects/:project_id/boards/:action/:id', :controller => 'boards'