summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index 7fcebf0b1..2e85c0a68 100644
--- a/store/store.go
+++ b/store/store.go
@@ -60,6 +60,7 @@ type Store interface {
FileInfo() FileInfoStore
Reaction() ReactionStore
Role() RoleStore
+ Scheme() SchemeStore
Job() JobStore
UserAccessToken() UserAccessTokenStore
ChannelMemberHistory() ChannelMemberHistoryStore
@@ -103,6 +104,7 @@ type TeamStore interface {
RemoveAllMembersByTeam(teamId string) StoreChannel
RemoveAllMembersByUser(userId string) StoreChannel
UpdateLastTeamIconUpdate(teamId string, curTime int64) StoreChannel
+ GetTeamsByScheme(schemeId string, offset int, limit int) StoreChannel
}
type ChannelStore interface {
@@ -160,6 +162,7 @@ type ChannelStore interface {
AnalyticsDeletedTypeCount(teamId string, channelType string) StoreChannel
GetChannelUnread(channelId, userId string) StoreChannel
ClearCaches()
+ GetChannelsByScheme(schemeId string, offset int, limit int) StoreChannel
}
type ChannelMemberHistoryStore interface {
@@ -475,5 +478,13 @@ type RoleStore interface {
Get(roleId string) StoreChannel
GetByName(name string) StoreChannel
GetByNames(names []string) StoreChannel
+ Delete(roldId string) StoreChannel
PermanentDeleteAll() StoreChannel
}
+
+type SchemeStore interface {
+ Save(scheme *model.Scheme) StoreChannel
+ Get(schemeId string) StoreChannel
+ GetAllPage(scope string, offset int, limit int) StoreChannel
+ Delete(schemeId string) StoreChannel
+}