inputlogic / django-api-starter

Boilerplate for starting Django DRF / API projects
2 stars 0 forks source link

Add user has non-hashed plain text version of password #41

Closed eweisner1973 closed 4 years ago

eweisner1973 commented 5 years ago

Solution in other projects was to use custom form: add_form = UserAdminCreateForm (see Step-Up for example)

weslord commented 4 years ago

I cannot reproduce this in a fresh install of django-api-starter.

Looking in Step-Up at the commit which introduced UserAdminCreateForm (21b3c114), the problem there was caused by the previously-used custom form UserAdminForm, which was specific to Step-Up and is not used in django-api-starter.