From ac0f0a74a0b2653779c1c64a14c28d30e086c356 Mon Sep 17 00:00:00 2001 From: Marius BALTEANU Date: Thu, 18 Mar 2021 21:32:50 +0200 Subject: [PATCH] Show project tree instead of subprojects in the project selector when you create a new issue --- app/helpers/issues_helper.rb | 2 +- test/functional/issues_controller_test.rb | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 363d970c8..4651a9258 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -748,7 +748,7 @@ module IssuesHelper if issue.parent_issue_id.present? issue.allowed_target_projects_for_subtask(User.current) elsif @project && issue.new_record? && !issue.copy? - issue.allowed_target_projects(User.current, 'descendants') + issue.allowed_target_projects(User.current, 'tree') else issue.allowed_target_projects(User.current) end diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index dd85bb5d1..31b67c753 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -3203,16 +3203,16 @@ class IssuesControllerTest < Redmine::ControllerTest get( :new, :params => { - :project_id => 1, + :project_id => 3, :tracker_id => 1 } ) assert_response :success assert_select 'select[name="issue[project_id]"]' do assert_select 'option', 3 - assert_select 'option[selected=selected]', :text => 'eCookbook' + assert_select 'option[value=?]', '1', :text => 'eCookbook' assert_select 'option[value=?]', '5', :text => '  » Private child of eCookbook' - assert_select 'option[value=?]', '3', :text => '  » eCookbook Subproject 1' + assert_select 'option[selected=selected][value=?]', '3', :text => '  » eCookbook Subproject 1' # user_id 2 is not allowed to add issues on project_id 4 (it's not a member) assert_select 'option[value=?]', '4', 0 -- 2.22.0