PaginationSerializer hardcoded to use ListSerializer · Issue #2327 · encode/django-rest-framework (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

@brianmay

Description

@brianmay

To me it feels like it should use Meta.list_serializer_class of the object serializer if it is defined instead.

diff --git a/rest_framework/pagination.py b/rest_framework/pagination.py index fb45128..94c2f2d 100644 --- a/rest_framework/pagination.py +++ b/rest_framework/pagination.py @@ -68,7 +68,12 @@ class BasePaginationSerializer(serializers.Serializer): except AttributeError: object_serializer = DefaultObjectSerializer