fix routes.rb, add route for my page graph and roadmap graph

This commit is contained in:
jaugustin 2012-05-21 17:02:17 +02:00
parent 933ccee63e
commit 3a5f4389c7

View File

@ -5,4 +5,7 @@ ActionController::Routing::Routes.draw do |map|
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'
map.connect 'graphs/recent-status-changes', :controller=>"graphs", :action=>"recent_status_changes_graph"
map.connect 'graphs/recent-assigned-to-changes', :controller=>"graphs", :action=>"recent_assigned_to_changes_graph"
map.connect 'graphs/target-version/:id', :controller=>"graphs", :action=>"target_version_graph"
end