mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Refs #27807 -- Removed docs for User.username_validator.
The new override functionality claimed in refs #21379 doesn't work.
Forwardport of 714fdbaa70
from stable/1.10.x.
This commit is contained in:
parent
d0315584b5
commit
c84b91b760
2 changed files with 5 additions and 25 deletions
|
@ -38,8 +38,7 @@ Fields
|
|||
usernames. Although it wasn't a deliberate choice, Unicode
|
||||
characters have always been accepted when using Python 3. Django
|
||||
1.10 officially added Unicode support in usernames, keeping the
|
||||
ASCII-only behavior on Python 2, with the option to customize the
|
||||
behavior using :attr:`.User.username_validator`.
|
||||
ASCII-only behavior on Python 2.
|
||||
|
||||
.. attribute:: first_name
|
||||
|
||||
|
@ -137,24 +136,6 @@ Attributes
|
|||
:attr:`~django.contrib.auth.models.User.is_authenticated` to this
|
||||
attribute.
|
||||
|
||||
.. attribute:: username_validator
|
||||
|
||||
Points to a validator instance used to validate usernames. Defaults to
|
||||
:class:`validators.UnicodeUsernameValidator`.
|
||||
|
||||
To change the default username validator, you can subclass the ``User``
|
||||
model and set this attribute to a different validator instance. For
|
||||
example, to use ASCII usernames::
|
||||
|
||||
from django.contrib.auth.models import User
|
||||
from django.contrib.auth.validators import ASCIIUsernameValidator
|
||||
|
||||
class CustomUser(User):
|
||||
username_validator = ASCIIUsernameValidator()
|
||||
|
||||
class Meta:
|
||||
proxy = True # If no new field is added.
|
||||
|
||||
Methods
|
||||
-------
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue