diff options
| author | Tim Graham <timograham@gmail.com> | 2014-01-22 10:17:44 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-01-22 10:17:44 -0500 |
| commit | 6f06c749b73abea84cd61a7bcfd1cc9732fbefe5 (patch) | |
| tree | 6d207fbe558555fae90380dd7db9e2675e9b4262 | |
| parent | 03395b4277f3bcd52d5582041b5ea84dcffc1015 (diff) | |
Fixed #21726 -- Clarified that password should not be included in REQUIRED_FIELDS.
Thanks russellm for the report.
| -rw-r--r-- | docs/topics/auth/customizing.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt index bdb5b19894..a65d498f07 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -505,8 +505,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 |
