summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-08-16 23:56:37 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-08-16 23:56:37 +0000
commita24f448dc0c761ade909946ee4a15d231dbf6061 (patch)
treed5703f596a9bffe87c846f9b87bff902c17f4c8e
parentd2b0a5184856866a3454142dcb372b5fb64969b3 (diff)
downloadredmine-a24f448dc0c761ade909946ee4a15d231dbf6061.tar.gz
redmine-a24f448dc0c761ade909946ee4a15d231dbf6061.zip
Add the Gantt chart as a project menu item
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3943 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/controllers/gantts_controller.rb1
-rw-r--r--lib/redmine.rb1
2 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/gantts_controller.rb b/app/controllers/gantts_controller.rb
index e762c19c8..cdfef5238 100644
--- a/app/controllers/gantts_controller.rb
+++ b/app/controllers/gantts_controller.rb
@@ -1,4 +1,5 @@
class GanttsController < ApplicationController
+ menu_item :gantt
before_filter :find_optional_project
rescue_from Query::StatementInvalid, :with => :query_statement_invalid
diff --git a/lib/redmine.rb b/lib/redmine.rb
index e92f67b73..d390cda26 100644
--- a/lib/redmine.rb
+++ b/lib/redmine.rb
@@ -183,6 +183,7 @@ Redmine::MenuManager.map :project_menu do |menu|
menu.push :issues, { :controller => 'issues', :action => 'index' }, :param => :project_id, :caption => :label_issue_plural
menu.push :new_issue, { :controller => 'issues', :action => 'new' }, :param => :project_id, :caption => :label_issue_new,
:html => { :accesskey => Redmine::AccessKeys.key_for(:new_issue) }
+ menu.push :gantt, { :controller => 'gantts', :action => 'show' }, :param => :project_id, :caption => :label_gantt
menu.push :news, { :controller => 'news', :action => 'index' }, :param => :project_id, :caption => :label_news_plural
menu.push :documents, { :controller => 'documents', :action => 'index' }, :param => :project_id, :caption => :label_document_plural
menu.push :wiki, { :controller => 'wiki', :action => 'index', :page => nil },