summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index ce5213572..3ec136f0b 100644
--- a/store/store.go
+++ b/store/store.go
@@ -107,6 +107,7 @@ type TeamStore interface {
GetTeamsByScheme(schemeId string, offset int, limit int) StoreChannel
MigrateTeamMembers(fromTeamId string, fromUserId string) StoreChannel
ResetAllTeamSchemes() StoreChannel
+ ClearAllCustomRoleAssignments() StoreChannel
}
type ChannelStore interface {
@@ -167,6 +168,7 @@ type ChannelStore interface {
GetChannelsByScheme(schemeId string, offset int, limit int) StoreChannel
MigrateChannelMembers(fromChannelId string, fromUserId string) StoreChannel
ResetAllChannelSchemes() StoreChannel
+ ClearAllCustomRoleAssignments() StoreChannel
}
type ChannelMemberHistoryStore interface {
@@ -258,6 +260,7 @@ type UserStore interface {
AnalyticsGetSystemAdminCount() StoreChannel
GetProfilesNotInTeam(teamId string, offset int, limit int) StoreChannel
GetEtagForProfilesNotInTeam(teamId string) StoreChannel
+ ClearAllCustomRoleAssignments() StoreChannel
}
type SessionStore interface {