Hi all,
I'm writing a backend in Django, I want to use django-rest-auth(1) to handle registration/email verification/social auth, the problem is that I need to distinguish between two different users: customer and professional
My question: is it better to proceed making django-rest-auth working as it comes "out of the box" and in a second moment go back and customize the user modem or vice versa? Note that at the I don't have data to preserve, I can easily recreate the database.
Any suggestion will be greatly appreciated!