mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-21 01:05:30 +00:00
updated max page size
This commit is contained in:
parent
8cf226fdd2
commit
22c17aaaa3
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ from rest_framework.pagination import PageNumberPagination
|
|||
class StreamPagination(PageNumberPagination):
|
||||
page_size = 25 # Default page size
|
||||
page_size_query_param = 'page_size' # Allow clients to specify page size
|
||||
max_page_size = 1000 # Prevent excessive page sizes
|
||||
max_page_size = 10000 # Prevent excessive page sizes
|
||||
|
||||
class StreamFilter(django_filters.FilterSet):
|
||||
name = django_filters.CharFilter(lookup_expr='icontains')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue