summaryrefslogtreecommitdiff
path: root/lib/gitlab/chat_commands/issue_create.rb
blob: 98338ebfa278babd09cb1dc17b13bb10fd1f7e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 self.allowed?(project, user)
        can?(user, :create_issue, project)
      end

      def execute(match)
        title = match[:title]
        description = match[:description]

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