summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-24 17:19:40 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-24 17:19:40 +0000
commit13611bf0ab4155d7ff464cfe7f73bb7d3cb705ae (patch)
treeda18c18e1c1be2bd9804dfe8059f98fac353a759
parentad02b3fb7bf925ed6f0120a8a27a6449526625c8 (diff)
downloadredmine-13611bf0ab4155d7ff464cfe7f73bb7d3cb705ae.tar.gz
redmine-13611bf0ab4155d7ff464cfe7f73bb7d3cb705ae.zip
route for repositories controller removed (problem when running under apache)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@110 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--config/routes.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 0871cec79..2559159f1 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -9,8 +9,7 @@ ActionController::Routing::Routes.draw do |map|
# You can have the root of your site routed by hooking up ''
# -- just remember to delete public/index.html.
map.connect '', :controller => "welcome"
-
- map.connect 'repositories/:action/:id/:path', :controller => 'repositories'
+
map.connect 'roles/workflow/:id/:role_id/:tracker_id', :controller => 'roles', :action => 'workflow'
map.connect 'help/:ctrl/:page', :controller => 'help'
map.connect ':controller/:action/:id/:sort_key/:sort_order'