Copy routes.rb to config dir and update their format to work with newer versions of Rails/Redmine

This commit is contained in:
jcopp 2012-04-04 14:58:38 -04:00 committed by jaugustin
parent b536b43f29
commit c36fcec628

6
config/routes.rb Normal file
View File

@ -0,0 +1,6 @@
ActionController::Routing::Routes.draw do |map|
map.connect 'projects/:project_id/issues/old', :controller => 'graphs', :action => 'old_issues'
map.connect 'issues/old', :controller => 'graphs', :action => 'old_issues'
map.connect 'projects/:project_id/issues/growth', :controller => 'graphs', :action => 'issue_growth'
map.connect 'issues/growth', :controller => 'graphs', :action => 'issue_growth'
end