summaryrefslogtreecommitdiffstats
path: root/config/routes.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-01-29 11:09:46 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-01-29 11:09:46 +0000
commitd5903178564e53977dd7dfb19adcb69d2cf79354 (patch)
tree394b1df7cc12282758122f83fc3990424a847e0c /config/routes.rb
parent1e1b34b5676c06176cbbc4a0f9192659fd3e7adc (diff)
downloadredmine-d5903178564e53977dd7dfb19adcb69d2cf79354.tar.gz
redmine-d5903178564e53977dd7dfb19adcb69d2cf79354.zip
Fixes other formats download links on the project issue list (project_id lost) broken r2317.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2331 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 594fc3164..d8969e309 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -111,6 +111,7 @@ ActionController::Routing::Routes.draw do |map|
issues_routes.with_options :conditions => {:method => :get} do |issues_views|
issues_views.connect 'issues', :action => 'index'
issues_views.connect 'issues.:format', :action => 'index'
+ issues_views.connect 'projects/:project_id/issues', :action => 'index'
issues_views.connect 'projects/:project_id/issues.:format', :action => 'index'
issues_views.connect 'projects/:project_id/issues/new', :action => 'new'
issues_views.connect 'projects/:project_id/issues/gantt', :action => 'gantt'