summaryrefslogtreecommitdiff
path: root/lib/gitlab/slash_commands/issue_show.rb
blob: ffa5184e5cb6872ff4078caa01e32df23efb848e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Gitlab
  module SlashCommands
    class IssueShow < IssueCommand
      def self.match(text)
        /\Aissue\s+show\s+#{Issue.reference_prefix}?(?<iid>\d+)/.match(text)
      end

      def self.help_message
        "issue show <id>"
      end

      def execute(match)
        issue = find_by_iid(match[:iid])

        if issue
          Gitlab::SlashCommands::Presenters::IssueShow.new(issue).present
        else
          Gitlab::SlashCommands::Presenters::Access.new.not_found
        end
      end
    end
  end
end