aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/settings.md
diff options
context:
space:
mode:
authorTom Christie2012-11-16 22:45:57 +0000
committerTom Christie2012-11-16 22:45:57 +0000
commit31f01bd6315f46bf28bb4c9c25a5298785fc4fc6 (patch)
tree8f2c0ef593402a23118d71c7f81734c30ef5d2cc /docs/api-guide/settings.md
parent9973cf329a2133a900256b53236348ef3c870842 (diff)
downloaddjango-rest-framework-31f01bd6315f46bf28bb4c9c25a5298785fc4fc6.tar.bz2
Polishing to page size query parameters & more docs
Diffstat (limited to 'docs/api-guide/settings.md')
-rw-r--r--docs/api-guide/settings.md26
1 files changed, 16 insertions, 10 deletions
diff --git a/docs/api-guide/settings.md b/docs/api-guide/settings.md
index 8fce9e4e..7884d096 100644
--- a/docs/api-guide/settings.md
+++ b/docs/api-guide/settings.md
@@ -96,11 +96,21 @@ Default: `rest_framework.serializers.ModelSerializer`
Default: `rest_framework.pagination.PaginationSerializer`
-## FORMAT_SUFFIX_KWARG
+## FILTER_BACKEND
-**TODO**
+The filter backend class that should be used for generic filtering. If set to `None` then generic filtering is disabled.
-Default: `'format'`
+## PAGINATE_BY
+
+The default page size to use for pagination. If set to `None`, pagination is disabled by default.
+
+Default: `None`
+
+## PAGINATE_BY_KWARG
+
+The name of a query parameter, which can be used by the client to overide the default page size to use for pagination. If set to `None`, clients may not override the default page size.
+
+Default: `None`
## UNAUTHENTICATED_USER
@@ -150,14 +160,10 @@ Default: `'accept'`
Default: `'format'`
-## PAGE_SIZE_KWARG
-
-Allows you to globally pass a page size parameter for an individual request.
-
-The name of the GET parameter of views which inherit ListModelMixin for requesting data with an individual page size.
+## FORMAT_SUFFIX_KWARG
-If the value if this setting is `None` the passing a page size is turned off by default.
+**TODO**
-Default: `'page_size'`
+Default: `'format'`
[cite]: http://www.python.org/dev/peps/pep-0020/