diff options
| author | Tim Graham <timograham@gmail.com> | 2014-04-16 07:47:56 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-04-16 07:47:56 -0400 |
| commit | ae5b6627965bc8342ad533e7c4dcb5bde3bcedc8 (patch) | |
| tree | 38c3f4686771de87601989a21746e23c92e79113 | |
| parent | 465980d070a33555cdabb4787db50a4e23228de2 (diff) | |
Added a note regarding django.contrib.auth.authenticate.
Thanks Josh Brown for the suggestion.
| -rw-r--r-- | docs/topics/auth/default.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index ec94400a7e..15af543fa1 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -142,6 +142,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 |
