diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2021-07-26 21:46:43 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2021-07-26 21:46:43 +0000 |
commit | 753477530608b0f5347cfd8ac9e348e6be4f4950 (patch) | |
tree | 5391eca93dc8e9d6d52c819b2e2e9cd195e96391 /test/integration | |
parent | 05452a7b9a6c528daeec1d3549d20bcd83943b1d (diff) | |
download | redmine-753477530608b0f5347cfd8ac9e348e6be4f4950.tar.gz redmine-753477530608b0f5347cfd8ac9e348e6be4f4950.zip |
Use issue path instead of bulk update issues path when only one issue is selected in the context menu (#33521).
git-svn-id: http://svn.redmine.org/redmine/trunk@21089 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/routing/issues_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration/routing/issues_test.rb b/test/integration/routing/issues_test.rb index 6ce58218b..33cc72d2c 100644 --- a/test/integration/routing/issues_test.rb +++ b/test/integration/routing/issues_test.rb @@ -43,6 +43,7 @@ class RoutingIssuesTest < Redmine::RoutingTest should_route 'GET /issues/bulk_edit' => 'issues#bulk_edit' should_route 'POST /issues/bulk_edit' => 'issues#bulk_edit' # For updating the bulk edit form should_route 'POST /issues/bulk_update' => 'issues#bulk_update' + should_route 'PATCH /issues/bulk_update' => 'issues#bulk_update' end def test_issues_scoped_under_project |