
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
20 lines
1.4 KiB
Ruby
20 lines
1.4 KiB
Ruby
RedmineApp::Application.routes.draw do
|
|
match 'issues/old', :to => 'graphs#old_issues', :via => 'get'
|
|
match 'issues/issue_age_graph', :to => 'graphs#issue_age_graph', :via => 'get'
|
|
match 'projects/:project_id/issues/old', :to => 'graphs#old_issues', :via => 'get'
|
|
match ':project_id/issue_age_graph', :to => 'graphs#issue_age_graph', :via => 'get'
|
|
match 'issues/growth', :to => 'graphs#issue_growth', :via => 'get'
|
|
match 'issues/issue_growth_graph', :to => 'graphs#issue_growth_graph', :via => 'get'
|
|
match 'projects/:project_id/issues/growth', :to => 'graphs#issue_growth', :via => 'get'
|
|
match ':project_id/issue_growth_graph', :to => 'graphs#issue_growth_graph', :via => 'get'
|
|
match 'issues/bug_growth', :to => 'graphs#bug_growth', :via => 'get'
|
|
match 'issues/bug_growth_graph', :to => 'graphs#bug_growth_graph', :via => 'get'
|
|
match 'projects/:project_id/issues/bug_growth', :to => 'graphs#bug_growth', :via => 'get'
|
|
match ':project_id/bug_growth_graph', :to => 'graphs#bug_growth_graph', :via => 'get'
|
|
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
|