I am building an application with Django Rest Framework and AngularJs. I am using Django-rest-auth for my authentication purposes, although, I have not been able to set it u
Try adding the app_label = 'yourApp' in the models Meta class:
app_label = 'yourApp'
class Meta: app_label = 'yourApp'