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:
Diffstat (limited to 'lib/gitlab/quick_actions/relate_actions.rb')
-rw-r--r--lib/gitlab/quick_actions/relate_actions.rb34
1 files changed, 25 insertions, 9 deletions
diff --git a/lib/gitlab/quick_actions/relate_actions.rb b/lib/gitlab/quick_actions/relate_actions.rb
index 4c8035f192e..b8cbfdefda1 100644
--- a/lib/gitlab/quick_actions/relate_actions.rb
+++ b/lib/gitlab/quick_actions/relate_actions.rb
@@ -8,19 +8,27 @@ module Gitlab
included do
desc { _('Mark this issue as related to another issue') }
- explanation do |related_reference|
- _('Marks this issue as related to %{issue_ref}.') % { issue_ref: related_reference }
+ explanation do |target_issues|
+ _('Marks this issue as related to %{issue_ref}.') % { issue_ref: target_issues.to_sentence }
end
- execution_message do |related_reference|
- _('Marked this issue as related to %{issue_ref}.') % { issue_ref: related_reference }
+ execution_message do |target_issues|
+ _('Marked this issue as related to %{issue_ref}.') % { issue_ref: target_issues.to_sentence }
end
- params '#issue'
+ params '<#issue | group/project#issue | issue URL>'
types Issue
- condition do
- current_user.can?(:"update_#{quick_action_target.to_ability_name}", quick_action_target)
+ condition { can_relate_issues? }
+ parse_params { |issues| format_params(issues) }
+ command :relate do |target_issues|
+ create_links(target_issues)
end
- command :relate do |related_reference|
- service = IssueLinks::CreateService.new(quick_action_target, current_user, { issuable_references: [related_reference] })
+
+ private
+
+ def create_links(references, type: 'relates_to')
+ service = IssueLinks::CreateService.new(
+ quick_action_target,
+ current_user, { issuable_references: references, link_type: type }
+ )
create_issue_link = proc { service.execute }
if quick_action_target.persisted?
@@ -29,6 +37,14 @@ module Gitlab
quick_action_target.run_after_commit(&create_issue_link)
end
end
+
+ def can_relate_issues?
+ current_user.can?(:admin_issue_link, quick_action_target)
+ end
+
+ def format_params(issue_references)
+ issue_references.split(' ')
+ end
end
end
end