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