summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-01-22 10:17:44 -0500
committerTim Graham <timograham@gmail.com>2014-01-22 10:19:07 -0500
commitebed0149505c9689650442ddc4e9a3efbf3579be (patch)
tree46c8245d32ab55f775f90a5424c5224d8b70e522
parent45535c8a4cba200cd610010ec1e2d515de6c2475 (diff)
[1.5.x] Fixed #21726 -- Clarified that password should not be included in REQUIRED_FIELDS.
Thanks russellm for the report. Backport of 6f06c749b7 from master
-rw-r--r--docs/topics/auth/customizing.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 6031d95209..296b5feebb 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -524,8 +524,9 @@ password resets. You must then provide some key implementation details:
.. note::
- ``REQUIRED_FIELDS`` must contain all required fields on your User
- model, but should *not* contain the ``USERNAME_FIELD``.
+ ``REQUIRED_FIELDS`` must contain all required fields on your
+ ``User`` model, but should *not* contain the ``USERNAME_FIELD`` or
+ ``password`` as these fields will always be prompted for.
.. attribute:: is_active