Ticket #19402: 19402.diff

File 19402.diff, 1.0 KB (added by Preston Holmes, 11 years ago)
  • docs/topics/auth.txt

    diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
    index beaf281..bd0c3b4 100644
    a b password resets. You must then provide some key implementation details:  
    18951895
    18961896    .. attribute:: User.REQUIRED_FIELDS
    18971897
    1898         A list of the field names that *must* be provided when creating
    1899         a user. For example, here is the partial definition for a User model
    1900         that defines two required fields - a date of birth and height::
     1898        A list of the field names that *must* be provided when creating a user.
     1899        These will specifically be prompted for when creating a user
     1900        interactively. It should include any field for which ``Blank`` is False
     1901        or undefined, but may include additional fields you want prompted for
     1902        when a user is created interactively. For example, here is the partial
     1903        definition for a User model that defines two required fields - a date
     1904        of birth and height::
    19011905
    19021906            class MyUser(AbstractBaseUser):
    19031907                ...
Back to Top