diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-18 18:50:41 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-18 18:50:41 +0000 |
commit | 8e00f57a886ae529ae308a17bfc9a363056754bf (patch) | |
tree | c6b14ccef81ea31948c3ce87d1176593ca56b152 /config | |
parent | 524cd689cf8743c389aab6a767a09383891dc5c6 (diff) | |
download | redmine-8e00f57a886ae529ae308a17bfc9a363056754bf.tar.gz redmine-8e00f57a886ae529ae308a17bfc9a363056754bf.zip |
Moved ProjectsController#list_documents and add_document to DocumentsController#index and new.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1011 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 5048da2f5..febb5e247 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -16,6 +16,7 @@ ActionController::Routing::Routes.draw do |map| map.connect 'issues/:issue_id/relations/:action/:id', :controller => 'issue_relations' map.connect 'projects/:project_id/issues/:action', :controller => 'issues' 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 'boards/:board_id/topics/:action/:id', :controller => 'messages' |