aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/authentication.md
diff options
context:
space:
mode:
authorTom Christie2013-04-26 14:03:26 +0100
committerTom Christie2013-04-26 14:03:26 +0100
commite301e2d974649a932ab9a7ca32199c068fa30495 (patch)
tree89591732481ff53f9e72421b77333c6134cbb920 /docs/api-guide/authentication.md
parentd985aec3c9034ab1aa899e914a5ac0baf314cb3c (diff)
downloaddjango-rest-framework-e301e2d974649a932ab9a7ca32199c068fa30495.tar.bz2
Adding 'view or viewset' to docs appropriate.
Diffstat (limited to 'docs/api-guide/authentication.md')
-rwxr-xr-xdocs/api-guide/authentication.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md
index 1f08f542..c2f73901 100755
--- a/docs/api-guide/authentication.md
+++ b/docs/api-guide/authentication.md
@@ -43,7 +43,8 @@ The default authentication schemes may be set globally, using the `DEFAULT_AUTHE
)
}
-You can also set the authentication scheme on a per-view basis, using the `APIView` class based views.
+You can also set the authentication scheme on a per-view or per-viewset basis,
+using the `APIView` class based views.
class ExampleView(APIView):
authentication_classes = (SessionAuthentication, BasicAuthentication)