2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module Gitlab
|
2017-09-10 17:25:29 +05:30
|
|
|
module SlashCommands
|
2017-08-17 22:00:37 +05:30
|
|
|
class IssueSearch < IssueCommand
|
|
|
|
def self.match(text)
|
|
|
|
/\Aissue\s+search\s+(?<query>.*)/.match(text)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.help_message
|
|
|
|
"issue search <your query>"
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-08-17 22:00:37 +05:30
|
|
|
def execute(match)
|
|
|
|
issues = collection.search(match[:query]).limit(QUERY_LIMIT)
|
|
|
|
|
|
|
|
if issues.present?
|
|
|
|
Presenters::IssueSearch.new(issues).present
|
|
|
|
else
|
|
|
|
Presenters::Access.new(issues).not_found
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|