Its not clear from the documentation, but I want to achieve 2 things:
Use my custom user model which inherits from models.Model.
It has a password field which stores password using sha1. I need to use model with that password field for authentication.
Since, the tables were used as it is in the project earlier need to use those only.
I need to use any token based authentication.
Can someone please point to the correct direction. I read django-rest-framework documentation, it pointed out to use Djoser for custom user model. But I'm unable to figure this out. How.