summaryrefslogtreecommitdiffstats
path: root/api/user.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-11-03 11:24:45 -0400
committerCorey Hulen <corey@hulen.com>2016-11-03 08:24:45 -0700
commit6da0ccd94447ddc5bcf51285ebac411dd3188cce (patch)
tree9334fa81ebbd23463134c6e5673e089ebf222836 /api/user.go
parent1b141681ae6a169272003fa83fb83ba245dbafc7 (diff)
downloadchat-6da0ccd94447ddc5bcf51285ebac411dd3188cce.tar.gz
chat-6da0ccd94447ddc5bcf51285ebac411dd3188cce.tar.bz2
chat-6da0ccd94447ddc5bcf51285ebac411dd3188cce.zip
Update user search to match against username, full name, nickname and email (#4421)
Diffstat (limited to 'api/user.go')
-rw-r--r--api/user.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/api/user.go b/api/user.go
index 787039355..e0507f399 100644
--- a/api/user.go
+++ b/api/user.go
@@ -2615,7 +2615,6 @@ func searchUsers(c *Context, w http.ResponseWriter, r *http.Request) {
}
searchOptions := map[string]bool{}
- searchOptions[store.USER_SEARCH_OPTION_USERNAME_ONLY] = true
searchOptions[store.USER_SEARCH_OPTION_ALLOW_INACTIVE] = props.AllowInactive
var uchan store.StoreChannel
@@ -2680,6 +2679,9 @@ func autocompleteUsersInChannel(c *Context, w http.ResponseWriter, r *http.Reque
return
}
+ searchOptions := map[string]bool{}
+ searchOptions[store.USER_SEARCH_OPTION_NAMES_ONLY] = true
+
uchan := Srv.Store.User().SearchInChannel(channelId, term, map[string]bool{})
nuchan := Srv.Store.User().SearchNotInChannel(teamId, channelId, term, map[string]bool{})