mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-25 19:14:01 +03:00
get_paginate_by
no longer takes optional .queryset
This commit is contained in:
parent
f87d32558e
commit
b552b62540
|
@ -158,7 +158,7 @@ class GenericAPIView(views.APIView):
|
||||||
# The following methods provide default implementations
|
# The following methods provide default implementations
|
||||||
# that you may want to override for more complex cases.
|
# that you may want to override for more complex cases.
|
||||||
|
|
||||||
def get_paginate_by(self, queryset=None):
|
def get_paginate_by(self):
|
||||||
"""
|
"""
|
||||||
Return the size of pages to use with pagination.
|
Return the size of pages to use with pagination.
|
||||||
|
|
||||||
|
@ -167,11 +167,6 @@ class GenericAPIView(views.APIView):
|
||||||
|
|
||||||
Otherwise defaults to using `self.paginate_by`.
|
Otherwise defaults to using `self.paginate_by`.
|
||||||
"""
|
"""
|
||||||
if queryset is not None:
|
|
||||||
warnings.warn('The `queryset` parameter to `get_paginate_by()` '
|
|
||||||
'is deprecated.',
|
|
||||||
DeprecationWarning, stacklevel=2)
|
|
||||||
|
|
||||||
if self.paginate_by_param:
|
if self.paginate_by_param:
|
||||||
try:
|
try:
|
||||||
return strict_positive_int(
|
return strict_positive_int(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user