feat(Mattermost Node): Add support for Channel Search (#2687)

* Squashed commit of the following:

commit 9f76bdca9b4af4fd3ee429d1c381c3ed5529434c
Author: Matt Walther <matt@mashio.net>
Date:   Sun Jan 16 16:40:34 2022 -0600

    Mattermost Channel Search

* Add more boilerplate so Search action renders

* Changed order of search to make the operations alphabetical

*  Add pagination

Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
This commit is contained in:
Matthew Walther
2022-03-19 13:57:53 -05:00
committed by GitHub
parent 5658593df4
commit 1b993e4022
5 changed files with 137 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
import { search as execute } from './execute';
import { channelSearchDescription as description } from './description';
export {
description,
execute,
};