summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/store/store.go b/store/store.go
index 1e153b422..e554f1486 100644
--- a/store/store.go
+++ b/store/store.go
@@ -272,11 +272,11 @@ type UserStore interface {
GetAnyUnreadPostCountForChannel(userId string, channelId string) StoreChannel
GetRecentlyActiveUsersForTeam(teamId string, offset, limit int) StoreChannel
GetNewUsersForTeam(teamId string, offset, limit int) StoreChannel
- Search(teamId string, term string, options map[string]bool) StoreChannel
- SearchNotInTeam(notInTeamId string, term string, options map[string]bool) StoreChannel
- SearchInChannel(channelId string, term string, options map[string]bool) StoreChannel
- SearchNotInChannel(teamId string, channelId string, term string, options map[string]bool) StoreChannel
- SearchWithoutTeam(term string, options map[string]bool) StoreChannel
+ Search(teamId string, term string, options *model.UserSearchOptions) StoreChannel
+ SearchNotInTeam(notInTeamId string, term string, options *model.UserSearchOptions) StoreChannel
+ SearchInChannel(channelId string, term string, options *model.UserSearchOptions) StoreChannel
+ SearchNotInChannel(teamId string, channelId string, term string, options *model.UserSearchOptions) StoreChannel
+ SearchWithoutTeam(term string, options *model.UserSearchOptions) StoreChannel
AnalyticsGetInactiveUsersCount() StoreChannel
AnalyticsGetSystemAdminCount() StoreChannel
GetProfilesNotInTeam(teamId string, offset int, limit int) StoreChannel