EvilLogitech/python-project-52

View on GitHub
task_manager/users/models.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from django.contrib.auth.models import User


# Create your models here.
class TaskManagerUser(User):
    class Meta:
        proxy = True

    def __str__(self):
        return f'{self.first_name} {self.last_name}'