I am using django-auditlog for creating entries in LogEntry table. my actions for User Model are not getting logged in LogEntry table.
my User model -
class User(AbstractUser):
...
...
...
username = None
USERNAME_FIELD = 'id'
REQUIRED_FIELDS = []
objects = UserManager()
def __str__(self):
return f"{self.email}"
...
...
auditlog.register(User)
*I have to use django-auditlog only so pls suggest accordigly
TIA