summaryrefslogtreecommitdiff
path: root/app/controllers/concerns
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-02 09:06:58 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-02 09:06:58 +0000
commit259c0cc0c4f8a49001b33d1bee577f4422e16d62 (patch)
treeb2cb5854de1e32daf6f94d55a7b6e5805f020eec /app/controllers/concerns
parent01de60f3a8f4d99e641d04d31369628425137c21 (diff)
downloadgitlab-ce-259c0cc0c4f8a49001b33d1bee577f4422e16d62.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/concerns')
-rw-r--r--app/controllers/concerns/issuable_actions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/concerns/issuable_actions.rb b/app/controllers/concerns/issuable_actions.rb
index 6162d006cc7..7b7cfa7a5d3 100644
--- a/app/controllers/concerns/issuable_actions.rb
+++ b/app/controllers/concerns/issuable_actions.rb
@@ -121,7 +121,7 @@ module IssuableActions
end
def bulk_update
- result = Issuable::BulkUpdateService.new(current_user, bulk_update_params).execute(resource_name)
+ result = Issuable::BulkUpdateService.new(parent, current_user, bulk_update_params).execute(resource_name)
quantity = result[:count]
render json: { notice: "#{quantity} #{resource_name.pluralize(quantity)} updated" }