diff options
| author | Neamar | 2013-05-20 10:42:10 +0300 |
|---|---|---|
| committer | Neamar | 2013-05-20 10:42:10 +0300 |
| commit | 42a8fe8995c6be871ee3c03f85c4ab790f4d63fc (patch) | |
| tree | b7c8b38e5fa63565305cb792598091ddfca4f23b /docs | |
| parent | 7c945b43f05f1b340f78c23f80c8043937c7fd2a (diff) | |
| download | django-rest-framework-42a8fe8995c6be871ee3c03f85c4ab790f4d63fc.tar.bz2 | |
Corrected docs (authentication instead of filtering)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api-guide/filtering.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/filtering.md b/docs/api-guide/filtering.md index a710ad7d..66df46a4 100644 --- a/docs/api-guide/filtering.md +++ b/docs/api-guide/filtering.md @@ -87,7 +87,7 @@ The default filter backends may be set globally, using the `DEFAULT_FILTER_BACKE 'DEFAULT_FILTER_BACKENDS': ('rest_framework.filters.DjangoFilterBackend',) } -You can also set the authentication policy on a per-view, or per-viewset basis, +You can also set the filter backends on a per-view, or per-viewset basis, using the `GenericAPIView` class based views. class UserListView(generics.ListAPIView): |
