summaryrefslogtreecommitdiffstats
path: root/config/routes.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-01-28 21:20:39 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-01-28 21:20:39 +0000
commitc4af6efd2556e045486f6393808ada4835cf2b9e (patch)
treea4a2892550565b528b8d7f84bcf0cb3f5ce8aef4 /config/routes.rb
parentd1d1c9bfd008fc23f64935376417d90b8477e407 (diff)
downloadredmine-c4af6efd2556e045486f6393808ada4835cf2b9e.tar.gz
redmine-c4af6efd2556e045486f6393808ada4835cf2b9e.zip
Fixing calendar and gantt links broken by r2317.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2328 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index e426d7daf..594fc3164 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -113,6 +113,8 @@ ActionController::Routing::Routes.draw do |map|
issues_views.connect 'issues.:format', :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'
+ issues_views.connect 'projects/:project_id/issues/calendar', :action => 'calendar'
issues_views.connect 'projects/:project_id/issues/:copy_from/copy', :action => 'new'
issues_views.connect 'issues/:id', :action => 'show', :id => /\d+/
issues_views.connect 'issues/:id.:format', :action => 'show', :id => /\d+/