Add missing routes that were causing templates to throw errors
This commit is contained in:
parent
c36fcec628
commit
933ccee63e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user