Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-16 18:07:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-16 18:07:53 +0300
commitc1f98d9590def61ad2fca09cc06a7a9d52cdebc5 (patch)
tree84490eecee06513f152cd466ed7c1d23a71a6ddf /app/services/issuable
parent12166c0faf75479889bc0ac432b85b9dae91552b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/issuable')
-rw-r--r--app/services/issuable/clone/base_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/issuable/clone/base_service.rb b/app/services/issuable/clone/base_service.rb
index 3d0abece1a2..02beaaf5d83 100644
--- a/app/services/issuable/clone/base_service.rb
+++ b/app/services/issuable/clone/base_service.rb
@@ -82,7 +82,7 @@ module Issuable
end
def close_issue
- close_service = Issues::CloseService.new(project: old_project, current_user: current_user)
+ close_service = Issues::CloseService.new(container: old_project, current_user: current_user)
close_service.execute(original_entity, notifications: false, system_note: true)
end