1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-22 06:19:38 +02:00

feat: implement pagination, add activity types and stats views; update category management and localization

This commit is contained in:
Sean Morley 2025-01-17 16:50:01 -05:00
parent 2b78021155
commit 5b4092ba6c
19 changed files with 1548 additions and 1534 deletions

View file

@ -0,0 +1,6 @@
from rest_framework.pagination import PageNumberPagination
class StandardResultsSetPagination(PageNumberPagination):
page_size = 25
page_size_query_param = 'page_size'
max_page_size = 1000