6 lines
158 B
Python
6 lines
158 B
Python
from rest_framework.pagination import PageNumberPagination
|
|
|
|
class PortfolioPagination(PageNumberPagination):
|
|
page_size = 12
|
|
page_query_param = 'page'
|