SQLStore: extend user.SearchUsers method (#17514)

* SQLStore: extend `user.SearchUsers` method

Allow `user.SearchUsers` to search users based on their auth type
This commit is contained in:
Oleg Gaidarenko
2019-06-14 09:50:38 +01:00
committed by GitHub
parent 51c6b50582
commit c853ef7318
3 changed files with 149 additions and 93 deletions
+5 -4
View File
@@ -140,10 +140,11 @@ type GetUserProfileQuery struct {
}
type SearchUsersQuery struct {
OrgId int64
Query string
Page int
Limit int
OrgId int64
Query string
Page int
Limit int
AuthModule string
Result SearchUserQueryResult
}