Created
January 9, 2021 02:41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from rest_framework import pagination | |
from rest_framework.response import Response | |
from collections import OrderedDict | |
class CustomPagination(pagination.CursorPagination): | |
page_size = 2 | |
cursor_query_param = 'c' | |
ordering = '-id' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment