Merge remote branch 'kowelu/missing-routes'

Conflicts:
	config/routes.rb

This merge resolves an issue of "global issues graphs cause 404", https://github.com/bradbeattie/redmine-graphs-plugin/pull/14#issuecomment-7969226
This commit is contained in:
dmp 2012-09-05 10:55:08 +09:00
commit c40c9a06a8

View File

@ -14,4 +14,6 @@ RedmineApp::Application.routes.draw do
match 'graphs/recent-status-changes', :to => 'graphs#recent_status_changes_graph', :via => 'get'
match 'graphs/recent-assigned-to-changes', :to => 'graphs#recent_assigned_to_changes_graph', :via => 'get'
match 'graphs/target-version/:id', :to => 'graphs#target_version_graph', :via => 'get'
match 'graphs/old_issues', :to => 'graphs#issue_age_graph'
match 'graphs/issue_growth', :to => 'graphs#issue_growth_graph'
end