Added documentation for REQUIRED_FIELDS in custom auth.
This commit is contained in:
parent
e6aaf65970
commit
40ea8b8882
|
@ -1790,6 +1790,11 @@ definitions:
|
||||||
some kind, but it can also be an email address, or any other unique
|
some kind, but it can also be an email address, or any other unique
|
||||||
identifier.
|
identifier.
|
||||||
|
|
||||||
|
.. attribute:: User.REQUIRED_FIELDS
|
||||||
|
|
||||||
|
A list of the field names that *must* be provided when creating
|
||||||
|
a user.
|
||||||
|
|
||||||
.. method:: User.get_full_name():
|
.. method:: User.get_full_name():
|
||||||
|
|
||||||
A longer formal identifier for the user. A common interpretation
|
A longer formal identifier for the user. A common interpretation
|
||||||
|
@ -1917,6 +1922,7 @@ required date of birth; it provides no permission checking, beyond a simple
|
||||||
objects = MyUserManager()
|
objects = MyUserManager()
|
||||||
|
|
||||||
USERNAME_FIELD = 'email'
|
USERNAME_FIELD = 'email'
|
||||||
|
REQUIRED_FIELDS = ['date_of_birth']
|
||||||
|
|
||||||
def get_full_name(self):
|
def get_full_name(self):
|
||||||
# The user is identified by their email address
|
# The user is identified by their email address
|
||||||
|
|
Loading…
Reference in New Issue