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:
authorRyan Scott <ryan@ryan-scott.me>2017-03-30 04:39:06 +0300
committerSean McGivern <sean@gitlab.com>2017-07-20 17:33:24 +0300
commit01c9488f4a559063eba77074ba2d369de87b8018 (patch)
treeffd18d3ebd174cf47ab9eb71cbacd940d4cf2831 /app/services/quick_actions
parentb6555693a8e445405c5746b7c76c9f603395bba2 (diff)
Added slash command to close an issue as a duplicate. Closes #26372
Diffstat (limited to 'app/services/quick_actions')
-rw-r--r--app/services/quick_actions/interpret_service.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/services/quick_actions/interpret_service.rb b/app/services/quick_actions/interpret_service.rb
index 6f82159e6c7..3eecf0b5545 100644
--- a/app/services/quick_actions/interpret_service.rb
+++ b/app/services/quick_actions/interpret_service.rb
@@ -471,6 +471,20 @@ module QuickActions
end
end
+ desc 'Mark this issue as a duplicate of another issue'
+ params '#issue'
+ condition do
+ issuable.is_a?(Issue) &&
+ issuable.persisted? &&
+ current_user.can?(:"update_#{issuable.to_ability_name}", issuable)
+ end
+ command :duplicate do |duplicate_param|
+ original_issue = extract_references(duplicate_param, :issue).first
+ if original_issue.present? && original_issue != issuable
+ @updates[:original_issue_id] = original_issue.id
+ end
+ end
+
def extract_users(params)
return [] if params.nil?