summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-04-16 07:47:56 -0400
committerTim Graham <timograham@gmail.com>2014-04-16 07:49:38 -0400
commit9510e96da647a5cc2ba6bab381f0df86a3a7db8b (patch)
tree391737286d03dbad29f1bb98d9b4878b21b2fb3f
parenta476b15aa594f9b63d2ff32c65783f50dc47c63e (diff)
[1.6.x] Added a note regarding django.contrib.auth.authenticate.
Thanks Josh Brown for the suggestion. Backport of ae5b662796 from master
-rw-r--r--docs/topics/auth/default.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt
index 40c81f2e14..f8dc1afb6c 100644
--- a/docs/topics/auth/default.txt
+++ b/docs/topics/auth/default.txt
@@ -137,6 +137,16 @@ Authenticating Users
# the authentication system was unable to verify the username and password
print("The username and password were incorrect.")
+ .. note::
+
+ This is a low level way to authenticate a set of credentials; for
+ example, it's used by the
+ :class:`~django.contrib.auth.middleware.RemoteUserMiddleware`. Unless
+ you are writing your own authentication system, you probably won't use
+ this. Rather if you are looking for a way to limit access to logged in
+ users, see the :func:`~django.contrib.auth.decorators.login_required`
+ decorator.
+
.. _topic-authorization:
Permissions and Authorization