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
parent
71f8de3b98
commit
f06b5d6de4
|
@ -8,8 +8,9 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
DefaultPageSize = 20
|
// TODO(docmerlin): change this when pagination is fixed
|
||||||
MaxPageSize = 100
|
DefaultPageSize = 2000
|
||||||
|
MaxPageSize = 2000
|
||||||
)
|
)
|
||||||
|
|
||||||
// PagingFilter represents a filter containing url query params.
|
// PagingFilter represents a filter containing url query params.
|
||||||
|
|
Loading…
Reference in New Issue