]> source.dussan.org Git - redmine.git/commitdiff
Added a plugin hook :routes that plugins can use to add and even override routes
authorEric Davis <edavis@littlestreamsoftware.com>
Fri, 17 Oct 2008 23:30:37 +0000 (23:30 +0000)
committerEric Davis <edavis@littlestreamsoftware.com>
Fri, 17 Oct 2008 23:30:37 +0000 (23:30 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1936 e93f8b46-1217-0410-a6f0-8f06a7374b81

config/routes.rb

index 913a8020f977c6181faceb7c9ebdc204caf2c419..b506b6c1084f8677c73413033dcb496ee7d4285d 100644 (file)
@@ -6,6 +6,9 @@ ActionController::Routing::Routes.draw do |map|
   # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
   # Keep in mind you can assign values other than :controller and :action
 
+  # Allow Redmine plugins to map routes and potentially override them
+  Redmine::Hook.call_hook :routes, :map => map
+
   map.home '', :controller => 'welcome'
   map.signin 'login', :controller => 'account', :action => 'login'
   map.signout 'logout', :controller => 'account', :action => 'logout'