You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By using the built-in User model of Django (django.contrib.auth.models) I can’t store a lot of fields, like phone number. However, if I set "settings.phone": "phone" in USER_ATTR_MAP, it won’t do anything (naturally, as the implementation calls setattr() on the user object.) Would it be possible to make it so it can update related models, too? Or is this already possible in a way I’m not aware of?
The text was updated successfully, but these errors were encountered:
By using the built-in
User
model of Django (django.contrib.auth.models
) I can’t store a lot of fields, like phone number. However, if I set"settings.phone": "phone"
inUSER_ATTR_MAP
, it won’t do anything (naturally, as the implementation callssetattr()
on the user object.) Would it be possible to make it so it can update related models, too? Or is this already possible in a way I’m not aware of?The text was updated successfully, but these errors were encountered: