social-app-django
social-app-django copied to clipboard
Questions: Custom user model, and multiple social accounts linking to one local account
Have a couple of questions, hoping that someone is able help.
-
I am using my own custom user model, which does not have a
username
orfirst_name
, onlyfull_name
andemail
. It seems likeusername
is required. Is there a way to configure it such that it is not? -
I'm looking to associate multiple social accounts to one local user. The idea is for support staff to login with their gmail accounts onto the one Customer Support account. Can this be done? I'm guessing that if this is possible, it will be in the
associate_by_email
pipeline?
@andrew-ang you can use your own custom pipeline function to create user. Or you can try adding your required fields as settings:
USER_FIELDS = ['username', 'full_name']
@andrew-ang did you ever solve question 2.?