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-12-05 21:10:06 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-05 21:10:06 +0300
commitc8419b0227e069a7403f41589f1d0ef690e762f1 (patch)
tree7009382402811f9e32b448f68f7f90912237aa03 /app/services
parent6659634b2bdc3ba362574541985c6852ad1574a4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services')
-rw-r--r--app/services/quick_actions/interpret_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/quick_actions/interpret_service.rb b/app/services/quick_actions/interpret_service.rb
index 250a4046cce..b5f6bff756b 100644
--- a/app/services/quick_actions/interpret_service.rb
+++ b/app/services/quick_actions/interpret_service.rb
@@ -42,7 +42,7 @@ module QuickActions
@updates = {}
@execution_message = {}
- content, commands = extractor.extract_commands(content, only: only, target: quick_action_target)
+ content, commands = extractor.extract_commands(content, only: only)
extract_updates(commands)
[content, @updates, execution_messages_for(commands), command_names(commands)]
@@ -56,7 +56,7 @@ module QuickActions
@quick_action_target = quick_action_target
- content, commands = extractor(keep_actions).extract_commands(content, target: quick_action_target)
+ content, commands = extractor(keep_actions).extract_commands(content)
commands = explain_commands(commands)
[content, commands]
end