I' m using django-allauth to authenticate users from different social sites. When a User is created in my db, i' d like to call a function which would create a UserProfile (or would do something) and to achieve this the best would be to use signals.post_save .
I' ve multiple django applications and of course i don' t want to change the core django-allauth, so my question where do i place my post_save code?
Thanks.
You could create an
accounts
app locally to hold the UserProfile and everything associated with it. The you could have: