summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authoramirreza sohrabi far <119850973+amirreza8002@users.noreply.github.com>2025-02-04 23:05:07 +0330
committerNatalia <124304+nessita@users.noreply.github.com>2025-02-04 16:36:13 -0300
commit2cbf32ed363bc09bb4e43a54f3a71c1742e8d0f9 (patch)
tree3af21e39f73238a98aacc0f0f4859a9b04fc0741 /docs
parentd6a44efa496f407efaf67f61499b2c2ca4317aec (diff)
[5.2.x] Clarified docs for default email value in UserManager.create_user().
Backport of 5da3ad7bf90fba7321f4c2834db44aa920c70bc7 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/auth.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ref/contrib/auth.txt b/docs/ref/contrib/auth.txt
index 7b0de1173f..56d7cea7b9 100644
--- a/docs/ref/contrib/auth.txt
+++ b/docs/ref/contrib/auth.txt
@@ -322,6 +322,9 @@ Manager methods
:meth:`~django.contrib.auth.models.User.set_unusable_password()` will
be called.
+ If no email is provided, :attr:`~django.contrib.auth.models.User.email`
+ will be set to an empty string.
+
The ``extra_fields`` keyword arguments are passed through to the
:class:`~django.contrib.auth.models.User`’s ``__init__`` method to
allow setting arbitrary fields on a :ref:`custom user model