Commit 1037a274 by decore Committed by GitHub

Update pagination.md

parent 151a60b6
...@@ -47,7 +47,7 @@ You can then apply your new style to a view using the `.pagination_class` attrib ...@@ -47,7 +47,7 @@ You can then apply your new style to a view using the `.pagination_class` attrib
class BillingRecordsView(generics.ListAPIView): class BillingRecordsView(generics.ListAPIView):
queryset = Billing.objects.all() queryset = Billing.objects.all()
serializer = BillingRecordsSerializer serializer_class = BillingRecordsSerializer
pagination_class = LargeResultsSetPagination pagination_class = LargeResultsSetPagination
Or apply the style globally, using the `DEFAULT_PAGINATION_CLASS` settings key. For example: Or apply the style globally, using the `DEFAULT_PAGINATION_CLASS` settings key. For example:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment