aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/pagination.py
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/pagination.py')
-rw-r--r--rest_framework/pagination.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rest_framework/pagination.py b/rest_framework/pagination.py
index 9e22a8bf..d5af2ac8 100644
--- a/rest_framework/pagination.py
+++ b/rest_framework/pagination.py
@@ -408,6 +408,8 @@ def encode_cursor(cursor):
class CursorPagination(BasePagination):
# TODO: handle queries with '' as a legitimate position
+ # Support case where ordering is already negative
+ # Support tuple orderings
cursor_query_param = 'cursor'
page_size = 5