From 6925b285540d46ab58c1707231c35ac104973281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Fri, 24 Nov 2017 14:33:11 -0500 Subject: [PATCH] Add default pagination class --- docs/tutorial/quickstart.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 4cea696c2..de2608323 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -142,6 +142,7 @@ We'd also like to set a few global settings. We'd like to turn on pagination, a ) REST_FRAMEWORK = { + 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination', 'PAGE_SIZE': 10 }