summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-04-04 02:34:14 +0900
committerCorey Hulen <corey@hulen.com>2017-04-03 10:34:14 -0700
commit43e795448f62fa86f3dad7940fc2297c44a6ea9c (patch)
treeaec7f651c2177f9cc02824f014bccd81e96c542a /store/store.go
parent6b61834ab14e9a4e51c29dd2904a1332c327aae6 (diff)
downloadchat-43e795448f62fa86f3dad7940fc2297c44a6ea9c.tar.gz
chat-43e795448f62fa86f3dad7940fc2297c44a6ea9c.tar.bz2
chat-43e795448f62fa86f3dad7940fc2297c44a6ea9c.zip
APIv4 post /teams/search (#5931)
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index de70edb99..3e508dfa5 100644
--- a/store/store.go
+++ b/store/store.go
@@ -61,6 +61,8 @@ type TeamStore interface {
Get(id string) StoreChannel
GetByName(name string) StoreChannel
SearchByName(name string) StoreChannel
+ SearchAll(term string) StoreChannel
+ SearchOpen(term string) StoreChannel
GetAll() StoreChannel
GetAllPage(offset int, limit int) StoreChannel
GetAllTeamListing() StoreChannel