summaryrefslogtreecommitdiff
path: root/app/controllers/autocomplete_controller.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-14 00:08:27 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-14 00:08:27 +0000
commitb7d58ff8b17623f64ac7835a590e79d916e758ac (patch)
tree4f75a8f9e0e30cf8c7e944ea2c4461be396c0d5f /app/controllers/autocomplete_controller.rb
parent0e2fc1701bd0c87cc458cbbb34c618b0e0dc5a14 (diff)
downloadgitlab-ce-b7d58ff8b17623f64ac7835a590e79d916e758ac.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/autocomplete_controller.rb')
-rw-r--r--app/controllers/autocomplete_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/autocomplete_controller.rb b/app/controllers/autocomplete_controller.rb
index ba8d2d18695..0df201ab506 100644
--- a/app/controllers/autocomplete_controller.rb
+++ b/app/controllers/autocomplete_controller.rb
@@ -53,7 +53,7 @@ class AutocompleteController < ApplicationController
private
def target_branch_params
- params.permit(:group_id, :project_id)
+ params.permit(:group_id, :project_id).select { |_, v| v.present? }
end
end