Skip to content
Snippets Groups Projects
paginators.py 304 B
Newer Older
"""
Paginators for the course enrollment related views.
"""
Michael Youngstrom's avatar
Michael Youngstrom committed
from __future__ import absolute_import

from rest_framework.pagination import CursorPagination


class CourseEnrollmentsApiListPagination(CursorPagination):
    """
    Paginator for the Course enrollments list API.
    """
    page_size = 100