We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 991914f commit 676630dCopy full SHA for 676630d
rest_framework_json_api/pagination.py
@@ -129,10 +129,8 @@ def get_paginated_response(self, data):
129
'meta': {
130
'pagination': OrderedDict([
131
('page', self.page.number),
132
+ ('pages', self.page.paginator.num_pages),
133
('count', self.page.paginator.count),
- ('total', self.page.paginator.num_pages),
134
- ('start_index', self.page.start_index() - 1),
135
- ('end_index', self.page.end_index() - 1),
136
])
137
},
138
'links': OrderedDict([
0 commit comments