mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-08-26 06:09:41 +00:00
added pagination in leaderboard admin
This commit is contained in:
13
web_admin/pagination.py
Normal file
13
web_admin/pagination.py
Normal file
@ -0,0 +1,13 @@
|
||||
"""
|
||||
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
|
Reference in New Issue
Block a user