1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-07-10 08:12:25 +03:00

Corrected docs (authentication instead of filtering)

This commit is contained in:
Neamar 2013-05-20 10:42:10 +03:00
parent 7c945b43f0
commit 42a8fe8995

View File

@ -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):