summaryrefslogtreecommitdiff
path: root/lib/gitlab/chat_commands/issue_create.rb
blob: 1e311e097716fc22d169b61945025763ca21c14b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module Gitlab
  module ChatCommands
    class IssueCreate < IssueCommand
      def self.match(text)
        /\Aissue\s+create\s+(?<title>[^\n]*)\n*(?<description>.*)\z/.match(text)
      end

      def self.help_message
        'issue create <title>\n<description>'
      end

      def execute(match)
        return nil unless can?(current_user, :create_issue, project)

        title = match[:title]
        description = match[:description]

        Issues::CreateService.new(project, current_user, title: title, description: description).execute
      end
    end
  end
end