]> source.dussan.org Git - redmine.git/commitdiff
Tab "New Issue" should not be displayed if a project has no trackers (#18571).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 5 Dec 2014 12:17:20 +0000 (12:17 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 5 Dec 2014 12:17:20 +0000 (12:17 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@13713 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine.rb
test/functional/projects_controller_test.rb

index bf7732352425ada348164ad3668cbc4387bd7894..f8f70d3d4f52ca374029bd05ff44c248a59172e3 100644 (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
index 83fcf160ed3cc57bda026a14d44cd2c3319c8223..abf862e2ea02ad1efbd76b93be58159dcd15ca47 100644 (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