gitlab-org--gitlab-foss/lib/gitlab/slash_commands/issue_search.rb

24 lines
521 B
Ruby
Raw Normal View History

module Gitlab
module SlashCommands
class IssueSearch < IssueCommand
def self.match(text)
/\Aissue\s+search\s+(?<query>.*)/.match(text)
end
def self.help_message
"issue search <your query>"
end
def execute(match)
issues = collection.search(match[:query]).limit(QUERY_LIMIT)
2017-01-26 14:30:34 +00:00
if issues.present?
Presenters::IssueSearch.new(issues).present
else
2017-01-26 14:30:34 +00:00
Presenters::Access.new(issues).not_found
end
end
end
end
end