14 lines
304 B
Python
14 lines
304 B
Python
"""
|
|
Paginators for the course enrollment related views.
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
from rest_framework.pagination import CursorPagination
|
|
|
|
|
|
class CourseEnrollmentsApiListPagination(CursorPagination):
|
|
"""
|
|
Paginator for the Course enrollments list API.
|
|
"""
|
|
page_size = 100
|