f93f8f569d
Enables frozen string for the following: * lib/gitlab/patch/**/*.rb * lib/gitlab/popen/**/*.rb * lib/gitlab/profiler/**/*.rb * lib/gitlab/project_authorizations/**/*.rb * lib/gitlab/prometheus/**/*.rb * lib/gitlab/query_limiting/**/*.rb * lib/gitlab/quick_actions/**/*.rb * lib/gitlab/redis/**/*.rb * lib/gitlab/request_profiler/**/*.rb * lib/gitlab/search/**/*.rb * lib/gitlab/sherlock/**/*.rb * lib/gitlab/sidekiq_middleware/**/*.rb * lib/gitlab/slash_commands/**/*.rb * lib/gitlab/sql/**/*.rb * lib/gitlab/template/**/*.rb * lib/gitlab/testing/**/*.rb * lib/gitlab/utils/**/*.rb * lib/gitlab/webpack/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
55 lines
1.5 KiB
Ruby
55 lines
1.5 KiB
Ruby
# coding: utf-8
|
|
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module SlashCommands
|
|
module Presenters
|
|
class IssueMove < Presenters::Base
|
|
include Presenters::IssueBase
|
|
|
|
def present(old_issue)
|
|
in_channel_response(moved_issue(old_issue))
|
|
end
|
|
|
|
def display_move_error(error)
|
|
message = header_with_list("The action was not successful, because:", [error])
|
|
|
|
ephemeral_response(text: message)
|
|
end
|
|
|
|
private
|
|
|
|
def moved_issue(old_issue)
|
|
{
|
|
attachments: [
|
|
{
|
|
title: "#{@resource.title} · #{@resource.to_reference}",
|
|
title_link: resource_url,
|
|
author_name: author.name,
|
|
author_icon: author.avatar_url,
|
|
fallback: "Issue #{@resource.to_reference}: #{@resource.title}",
|
|
pretext: pretext(old_issue),
|
|
color: color(@resource),
|
|
fields: fields,
|
|
mrkdwn_in: [
|
|
:title,
|
|
:pretext,
|
|
:text,
|
|
:fields
|
|
]
|
|
}
|
|
]
|
|
}
|
|
end
|
|
|
|
def pretext(old_issue)
|
|
"Moved issue *#{issue_link(old_issue)}* to *#{issue_link(@resource)}*"
|
|
end
|
|
|
|
def issue_link(issue)
|
|
"[#{issue.to_reference}](#{project_issue_url(issue.project, issue)})"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|