A bit frustrated about this.
What the difference between those options?
Which I need to use to override default django user model?
What the value SOCIAL_AUTH_USER_MODEL has by default?
A bit frustrated about this.
What the difference between those options?
Which I need to use to override default django user model?
What the value SOCIAL_AUTH_USER_MODEL has by default?
To override the default django user model use
AUTH_USER_MODEL
. To use django-social-auth with the new model point to it by usingSOCIAL_AUTH_USER_MODEL
. Both useauth.User
by default.