1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 01:11:12 +00:00

Tab "New Issue" should not be displayed if a project has no trackers (#18571).

git-svn-id: http://svn.redmine.org/redmine/trunk@13713 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2014-12-05 12:17:20 +00:00
parent 934e3c7de1
commit 7c1445f19a
2 changed files with 16 additions and 1 deletions

View File

@ -230,7 +230,8 @@ Redmine::MenuManager.map :project_menu do |menu|
:if => Proc.new { |p| p.shared_versions.any? }
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) }
:html => { :accesskey => Redmine::AccessKeys.key_for(:new_issue) },
:if => Proc.new { |p| p.trackers.any? }
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

View File

@ -629,4 +629,18 @@ class ProjectsControllerTest < ActionController::TestCase
get :show, :id => 1
assert_select 'body.project-ecookbook'
end
def test_project_menu_should_include_new_issue_link
@request.session[:user_id] = 2
get :show, :id => 1
assert_select '#main-menu a.new-issue[href="/projects/ecookbook/issues/new"]', :text => 'New issue'
end
def test_project_menu_should_not_include_new_issue_link_for_project_without_trackers
Project.find(1).trackers.clear
@request.session[:user_id] = 2
get :show, :id => 1
assert_select '#main-menu a.new-issue', 0
end
end