#26133: AbstractBaseUser missing password validaton
-------------------------------+--------------------
     Reporter:  hacknaked      |      Owner:  nobody
         Type:  Uncategorized  |     Status:  new
    Component:  contrib.auth   |    Version:  1.9
     Severity:  Normal         |   Keywords:
 Triage Stage:  Unreviewed     |  Has patch:  0
Easy pickings:  0              |      UI/UX:  0
-------------------------------+--------------------
 Using the new password validation framework, it looks like
 {{{AbstractBaseUser}}} does not call password validators defined in
 {{{settings.py}}}:

 {{{
 # django.contrib.auth.models.py

 class AbstractBaseUser(models.Model):
     password = models.CharField(_('password'), max_length=128)
 }}}

 I'd expect something like this in the above line:

 {{{
 class AbstractBaseUser(models.Model):
     password = models.CharField(_('password'), max_length=128,
 validators=validators_list())
 }}}


 This issue is related to #25052, but I'm not sure.

--
Ticket URL: <https://code.djangoproject.com/ticket/26133>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.5b11c584cf7ede22fa4e6bfe2ffc82a0%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to