7 lines
193 B
Python
7 lines
193 B
Python
from rest_framework.pagination import CursorPagination
|
|
|
|
class VendorProductCursorPagination(CursorPagination):
|
|
page_size = 20
|
|
ordering = '-created_at'
|
|
cursor_query_param = 'cursor'
|