diff options
| author | Stephan Groß | 2012-11-15 12:06:43 +0100 |
|---|---|---|
| committer | Stephan Groß | 2012-11-15 12:06:43 +0100 |
| commit | 3ae203a0184d27318a8a828ce322b151ade0340f (patch) | |
| tree | e8e927ad52ed0b6a145db9725dc0479bfe006d3b /docs/api-guide/settings.md | |
| parent | b17a9818008cf3828adb896ae9be134fb63c5693 (diff) | |
| download | django-rest-framework-3ae203a0184d27318a8a828ce322b151ade0340f.tar.bz2 | |
updated script to just use page_size_kwarg
Diffstat (limited to 'docs/api-guide/settings.md')
| -rw-r--r-- | docs/api-guide/settings.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/api-guide/settings.md b/docs/api-guide/settings.md index 2f90369b..8fce9e4e 100644 --- a/docs/api-guide/settings.md +++ b/docs/api-guide/settings.md @@ -150,10 +150,14 @@ Default: `'accept'` Default: `'format'` -## ALLOW_PAGE_SIZE_PARAM +## PAGE_SIZE_KWARG Allows you to globally pass a page size parameter for an individual request. -Default: `'True'` +The name of the GET parameter of views which inherit ListModelMixin for requesting data with an individual page size. + +If the value if this setting is `None` the passing a page size is turned off by default. + +Default: `'page_size'` [cite]: http://www.python.org/dev/peps/pep-0020/ |
