summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorAndrei Stanciu <andrei.stanciu@geminisols.ro>2017-02-28 10:41:38 +0200
committerGeorge Goldberg <george@gberg.me>2017-02-28 08:41:38 +0000
commit45edfbe719b87bc6207f88350ff501eff142b28c (patch)
tree30dac4de7c3b43ce9b2ec2160e8c993cc9c4e764 /store/store.go
parent83c113595ace467ad34f05e35fb2282fa8631a17 (diff)
downloadchat-45edfbe719b87bc6207f88350ff501eff142b28c.tar.gz
chat-45edfbe719b87bc6207f88350ff501eff142b28c.tar.bz2
chat-45edfbe719b87bc6207f88350ff501eff142b28c.zip
Get all teams api4 (#5542)
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 4226f03a5..57741742c 100644
--- a/store/store.go
+++ b/store/store.go
@@ -62,7 +62,9 @@ type TeamStore interface {
GetByName(name string) StoreChannel
SearchByName(name string) StoreChannel
GetAll() StoreChannel
+ GetAllPage(offset int, limit int) StoreChannel
GetAllTeamListing() StoreChannel
+ GetAllTeamPageListing(offset int, limit int) StoreChannel
GetTeamsByUserId(userId string) StoreChannel
GetByInviteId(inviteId string) StoreChannel
PermanentDelete(teamId string) StoreChannel