Admins can now do unlimited page size user search (listAllUsers & listAllOrgs) (#6143)

Non-admins will default to 10 page size
This commit is contained in:
John Olheiser 2019-02-21 14:42:54 -06:00 committed by techknowlogick
parent 477ef46251
commit 994b1be9d1
2 changed files with 4 additions and 1 deletions

View file

@ -55,7 +55,7 @@ func Search(ctx *context.APIContext) {
Type: models.UserTypeIndividual,
PageSize: com.StrTo(ctx.Query("limit")).MustInt(),
}
if opts.PageSize == 0 {
if opts.PageSize <= 0 {
opts.PageSize = 10
}