Hasan Ammar

Results 3 issues of Hasan Ammar

Looks like [log_update is connected to a pre_save signal](https://github.com/jazzband/django-auditlog/blob/master/auditlog/registry.py#L61), which can result in log entries being created even when the object does not get saved. Wouldn't post_save be more accurate?

Hello, The `transaction.atomic` call to lock the User table currently always happens against the default DB. This is because `transaction.atomic` has no knowledge of which databases will be queried in...

bug

See here for minimal test showcasing the issue: https://github.com/hackoder/django-auditlog/commit/742bdf6e17eb8cf0817c6400b882363a268f3f2c We track changes to Django user group memberships using: ``` auditlog.register(User, m2m_fields=["groups"]) ``` and then Group membership changes are made in...