gitlab-org--gitlab-foss/lib/gitlab/slash_commands/presenters/issue_new.rb

30 lines
625 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-01-19 08:22:09 +00:00
module Gitlab
module SlashCommands
2017-01-19 08:22:09 +00:00
module Presenters
2017-01-26 14:30:34 +00:00
class IssueNew < Presenters::Base
include Presenters::IssueBase
2017-01-26 14:30:34 +00:00
2017-01-19 08:22:09 +00:00
def present
in_channel_response(response_message)
2017-01-19 08:22:09 +00:00
end
private
def fallback_message
"New issue #{issue.to_reference}: #{issue.title}"
end
def fields_with_markdown
%i(title pretext text fields)
2017-01-19 08:22:09 +00:00
end
def pretext
"I created an issue on #{author_profile_link}'s behalf: *#{issue.to_reference}* in #{project_link}"
2017-01-19 08:22:09 +00:00
end
end
end
end
end