summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-08-31 16:34:54 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-08-31 16:34:54 +0000
commit696d21f8c8c88d487df46112082fcb1d9b5f6ec2 (patch)
tree5a4addd08ae94b062f042ae4de3bb1f18fce868e /config
parentdbad26c87db8247c0d635c993981d4277e165978 (diff)
downloadredmine-696d21f8c8c88d487df46112082fcb1d9b5f6ec2.tar.gz
redmine-696d21f8c8c88d487df46112082fcb1d9b5f6ec2.zip
Adds cross-project time reports support (#994).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1778 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index c34052f86..913a8020f 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -20,7 +20,7 @@ ActionController::Routing::Routes.draw do |map|
map.connect 'projects/:project_id/news/:action', :controller => 'news'
map.connect 'projects/:project_id/documents/:action', :controller => 'documents'
map.connect 'projects/:project_id/boards/:action/:id', :controller => 'boards'
- map.connect 'projects/:project_id/timelog/:action/:id', :controller => 'timelog'
+ map.connect 'projects/:project_id/timelog/:action/:id', :controller => 'timelog', :project_id => /.+/
map.connect 'boards/:board_id/topics/:action/:id', :controller => 'messages'
map.with_options :controller => 'repositories' do |omap|