Add missing routes that were causing templates to throw errors

This commit is contained in:
jcopp 2012-04-05 02:50:38 -04:00 committed by jaugustin
parent c36fcec628
commit 933ccee63e

View File

@ -1,6 +1,8 @@
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 ':project_id/issue_age_graph', :controller => 'graphs', :action => 'issue_age_graph'
map.connect 'projects/:project_id/issues/growth', :controller => 'graphs', :action => 'issue_growth'
map.connect 'issues/growth', :controller => 'graphs', :action => 'issue_growth'
map.connect ':project_id/issue_growth_graph', :controller => 'graphs', :action => 'issue_growth_graph'
end