mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-11 07:38:56 +00:00
14 lines
343 B
Python
14 lines
343 B
Python
"""
|
|
web_admin pagination file
|
|
"""
|
|
from rest_framework.pagination import PageNumberPagination
|
|
|
|
|
|
class CustomPageNumberPagination(PageNumberPagination):
|
|
"""
|
|
custom paginator class
|
|
"""
|
|
page_size = 10 # Set the desired page size
|
|
page_size_query_param = 'page_size'
|
|
max_page_size = 100 # Set a maximum page size if needed
|