diff options
| author | Tom Christie | 2012-10-02 10:40:43 +0100 |
|---|---|---|
| committer | Tom Christie | 2012-10-02 10:40:43 +0100 |
| commit | ae8a8270042820f92b9d43597bde50d72c300513 (patch) | |
| tree | 02e6f83b483c262b4496453cd5f1eeabbcb3fe82 /rest_framework/pagination.py | |
| parent | 2284e592de6315264098e77f72b816984a50d025 (diff) | |
| download | django-rest-framework-ae8a8270042820f92b9d43597bde50d72c300513.tar.bz2 | |
Make 'results_field' attribute of BasePaginationSerializer public.
Diffstat (limited to 'rest_framework/pagination.py')
| -rw-r--r-- | rest_framework/pagination.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rest_framework/pagination.py b/rest_framework/pagination.py index f8b1fd1a..131718fd 100644 --- a/rest_framework/pagination.py +++ b/rest_framework/pagination.py @@ -52,14 +52,14 @@ class BasePaginationSerializer(serializers.Serializer): to make implementing custom serializers more easy. """ _options_class = PaginationSerializerOptions - _results_field = 'results' + results_field = 'results' def __init__(self, *args, **kwargs): """ Override init to add in the object serializer field on-the-fly. """ super(BasePaginationSerializer, self).__init__(*args, **kwargs) - results_field = self._results_field + results_field = self.results_field object_serializer = self.opts.object_serializer_class self.fields[results_field] = object_serializer(source='object_list') |
