diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-01-14 22:19:53 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-01-14 22:19:53 +0000 |
commit | dfe447f841f62191e889a4be5e523942c778f2fc (patch) | |
tree | fb3d4da9c3ee9384e4490478f2dff6d1dd24c7d9 /config | |
parent | 68a4cd38f54316e6d93ce69b6e25afc329652013 (diff) | |
download | redmine-dfe447f841f62191e889a4be5e523942c778f2fc.tar.gz redmine-dfe447f841f62191e889a4be5e523942c778f2fc.zip |
Fixes project editing route broken by r3313.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3314 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index bf9966cbf..8956e3c94 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -206,7 +206,7 @@ ActionController::Routing::Routes.draw do |map| project_actions.connect 'projects/new', :action => 'add' project_actions.connect 'projects', :action => 'add' project_actions.connect 'projects.:format', :action => 'add', :format => /xml/ - project_actions.connect 'projects/:id/:action', :action => /destroy|archive|unarchive/ + project_actions.connect 'projects/:id/:action', :action => /edit|destroy|archive|unarchive/ project_actions.connect 'projects/:id/files/new', :action => 'add_file' project_actions.connect 'projects/:id/versions/new', :action => 'add_version' project_actions.connect 'projects/:id/categories/new', :action => 'add_issue_category' |