diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-08-16 23:56:42 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-08-16 23:56:42 +0000 |
commit | e63acb70ca82d0c62476c92bbe815330ee01ad93 (patch) | |
tree | 6215d964f431dfebaf74ced0d11e96ed9ffef096 /lib/redmine.rb | |
parent | a24f448dc0c761ade909946ee4a15d231dbf6061 (diff) | |
download | redmine-e63acb70ca82d0c62476c92bbe815330ee01ad93.tar.gz redmine-e63acb70ca82d0c62476c92bbe815330ee01ad93.zip |
Add the Calendar as a project menu item.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3944 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine.rb')
-rw-r--r-- | lib/redmine.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb index d390cda26..073e52d2d 100644 --- a/lib/redmine.rb +++ b/lib/redmine.rb @@ -184,6 +184,7 @@ Redmine::MenuManager.map :project_menu do |menu| 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 :calendar, { :controller => 'calendars', :action => 'show' }, :param => :project_id, :caption => :label_calendar 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 }, |