diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-12-12 15:23:22 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-12-12 15:23:22 +0000 |
commit | c66943c9b893483883e7c18e55aea7587f9f7bbd (patch) | |
tree | 75887733cae416071f1b4c30f57666285fa41eaf /config/routes.rb | |
parent | 21b52d2fd968c0386b45747fe9c10d43e500d473 (diff) | |
download | redmine-c66943c9b893483883e7c18e55aea7587f9f7bbd.tar.gz redmine-c66943c9b893483883e7c18e55aea7587f9f7bbd.zip |
Removes changelog view.
All trackers can now be displayed on the roadmap. By default, only those marked as displayed on the roadmap are displayed.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3162 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-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 dbb159c33..e2560c183 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -178,7 +178,7 @@ ActionController::Routing::Routes.draw do |map| project_views.connect 'projects.:format', :action => 'index' project_views.connect 'projects/new', :action => 'add' project_views.connect 'projects/:id', :action => 'show' - project_views.connect 'projects/:id/:action', :action => /roadmap|changelog|destroy|settings/ + project_views.connect 'projects/:id/:action', :action => /roadmap|destroy|settings/ project_views.connect 'projects/:id/files', :action => 'list_files' project_views.connect 'projects/:id/files/new', :action => 'add_file' project_views.connect 'projects/:id/versions/new', :action => 'add_version' |