fix: Fixed pagination issue with enrollment api.

Signed-off-by: Farhaan Bukhsh <farhaan@opencraft.com>
This commit is contained in:
Farhaan Bukhsh
2023-01-03 21:08:01 +05:30
parent d92e2aba51
commit 76beb4e425

View File

@@ -11,3 +11,6 @@ class CourseEnrollmentsApiListPagination(CursorPagination):
Paginator for the Course enrollments list API.
"""
page_size = 100
page_size_query_param = 'page_size'
max_page_size = 100
page_query_param = 'page'