summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
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