diff options
author | Brett Walker <bwalker@gitlab.com> | 2019-06-13 11:30:40 -0500 |
---|---|---|
committer | Rajat Jain <rjain@gitlab.com> | 2019-06-14 12:42:05 +0530 |
commit | 794c3c8d42d3f4e9850f41168f25e8f6c56598f5 (patch) | |
tree | 92c0131f5ff19b24a0cbec0375814d1e655754db /app/controllers/projects/issues_controller.rb | |
parent | dc46a1c42ed29c2ed2298091489545a8ced1636c (diff) | |
download | gitlab-ce-testing-manual-ordering.tar.gz |
Support use of group_full_path when reorderingtesting-manual-ordering
which scopes the issues to a group and subgroups
Diffstat (limited to 'app/controllers/projects/issues_controller.rb')
-rw-r--r-- | app/controllers/projects/issues_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/issues_controller.rb b/app/controllers/projects/issues_controller.rb index 48f82a64818..f221f0363d3 100644 --- a/app/controllers/projects/issues_controller.rb +++ b/app/controllers/projects/issues_controller.rb @@ -254,7 +254,7 @@ class Projects::IssuesController < Projects::ApplicationController end def reorder_params - params.permit(:move_before_id, :move_after_id) + params.permit(:move_before_id, :move_after_id, :group_full_path) end def store_uri |