summaryrefslogtreecommitdiff
path: root/app/services/issues
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-15 15:07:42 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-15 15:07:42 +0000
commitfa7c331b76ed59230cc56fc51bfc9e467c8bb9b4 (patch)
treeeb03d2b6e8dd45f67864635c8b0b0de8d671edf7 /app/services/issues
parentf26f31d2fd8e3c91677e2629293b9e0562c1437a (diff)
downloadgitlab-ce-fa7c331b76ed59230cc56fc51bfc9e467c8bb9b4.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/issues')
-rw-r--r--app/services/issues/update_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/issues/update_service.rb b/app/services/issues/update_service.rb
index d43df0da3fd..a185ff374ed 100644
--- a/app/services/issues/update_service.rb
+++ b/app/services/issues/update_service.rb
@@ -109,7 +109,7 @@ module Issues
target_project != issue.project
update(issue)
- Issues::MoveService.new(project: project, current_user: current_user).execute(issue, target_project)
+ Issues::MoveService.new(container: project, current_user: current_user).execute(issue, target_project)
end
private
@@ -139,7 +139,7 @@ module Issues
# we've pre-empted this from running in #execute, so let's go ahead and update the Issue now.
update(issue)
- Issues::CloneService.new(project: project, current_user: current_user).execute(issue, target_project, with_notes: with_notes)
+ Issues::CloneService.new(container: project, current_user: current_user).execute(issue, target_project, with_notes: with_notes)
end
def create_merge_request_from_quick_action