fix: raise API pagesizes

Currently, in the API, pagination is not working; to mitigate this, we
can drastically increase the page size.
pull/20083/head
docmerlin (j. Emrys Landivar) 2020-11-17 16:51:19 -06:00
parent 71f8de3b98
commit f06b5d6de4
1 changed files with 3 additions and 2 deletions

View File

@ -8,8 +8,9 @@ import (
)
const (
DefaultPageSize = 20
MaxPageSize = 100
// TODO(docmerlin): change this when pagination is fixed
DefaultPageSize = 2000
MaxPageSize = 2000
)
// PagingFilter represents a filter containing url query params.