diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-05-30 09:10:06 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-05-30 09:10:06 +0000 |
commit | 78384d147a48a2d690c35f030232e232800dd919 (patch) | |
tree | 716f4a95300f4e16cdf9f2f432d0b22cd943b4db /lib/redmine.rb | |
parent | 9e39ad4719949ddf0b7156198e4220290a069683 (diff) | |
download | redmine-78384d147a48a2d690c35f030232e232800dd919.tar.gz redmine-78384d147a48a2d690c35f030232e232800dd919.zip |
Menu should not include "New issue" for users with copy issues permission only.
git-svn-id: http://svn.redmine.org/redmine/trunk@14290 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine.rb')
-rw-r--r-- | lib/redmine.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb index 9b7817378..a264585ef 100644 --- a/lib/redmine.rb +++ b/lib/redmine.rb @@ -231,7 +231,8 @@ 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', :copy_from => nil }, :param => :project_id, :caption => :label_issue_new, :html => { :accesskey => Redmine::AccessKeys.key_for(:new_issue) }, - :if => Proc.new { |p| p.trackers.any? } + :if => Proc.new { |p| p.trackers.any? }, + :permission => :add_issues 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 |