diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-05 22:22:51 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-05 22:22:51 +0000 |
commit | ad68a82be19f44c8e9ab895075a4e932133ad6ee (patch) | |
tree | a8cc406846b7883cda0b4c54a07843395280b694 /config/routes.rb | |
parent | 8509cf80f009436e900294acc821295f21e3b142 (diff) | |
download | redmine-ad68a82be19f44c8e9ab895075a4e932133ad6ee.tar.gz redmine-ad68a82be19f44c8e9ab895075a4e932133ad6ee.zip |
Moved ProjectsController#list_news to NewsController#index.
Removed FeedsController, issues and news feeds are now handled by issues and news controllers.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@888 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-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 3b4767a33..c3637304a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -15,6 +15,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/boards/:action/:id', :controller => 'boards' map.connect 'boards/:board_id/topics/:action/:id', :controller => 'messages' |