mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Increased max user list to 1000 for user admin page, need to paging, but will have to wait a few days
This commit is contained in:
parent
12e28c1895
commit
138e720695
@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
func AdminSearchUsers(c *middleware.Context) {
|
||||
query := m.SearchUsersQuery{Query: "", Page: 0, Limit: 20}
|
||||
query := m.SearchUsersQuery{Query: "", Page: 0, Limit: 1000}
|
||||
if err := bus.Dispatch(&query); err != nil {
|
||||
c.JsonApiErr(500, "Failed to fetch users", err)
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user