SQLStore: use bool pointer instead of string (#18111)

This commit is contained in:
Oleg Gaidarenko
2019-07-17 06:24:56 +03:00
committed by GitHub
parent c194ae1ba5
commit d9f01cb822
3 changed files with 9 additions and 13 deletions

View File

@@ -147,9 +147,7 @@ type SearchUsersQuery struct {
Limit int
AuthModule string
// We have to use string not bool, since there is cases when
// we don't care if user is disabled or not
IsDisabled string
IsDisabled *bool
Result SearchUserQueryResult
}