summaryrefslogtreecommitdiff
path: root/app/services/mattermost/commands/issue_search_service.rb
blob: 072cb8e259072abb7ed396a34fd582516f3a4d3f (plain)
1
2
3
4
5
6
7
8
9
module Mattermost
  module Commands
    class IssueSearchService < IssueService
      def execute
        present search_results
      end
    end
  end
end