Remove default_app_config configuration

This commit is contained in:
Hasan Ramezani 2022-04-25 10:09:02 +02:00
parent 4c0bfabab2
commit e39fab3b83
3 changed files with 1 additions and 3 deletions

View file

@ -4,6 +4,7 @@
- feat: enable use of replica database (delegating the choice to `DATABASES_ROUTER`) ([#359](https://github.com/jazzband/django-auditlog/pull/359))
- Add `mask_fields` argument in `register` to mask sensitive information when logging ([#3710](https://github.com/jazzband/django-auditlog/pull/310))
- Django: Drop 2.2 support. `django_jsonfield_backport` is not required anymore ([#370](https://github.com/jazzband/django-auditlog/pull/370))
- Remove `default_app_config` configuration ([#372](https://github.com/jazzband/django-auditlog/pull/372))
#### Important notes
- LogEntry no longer save to same database instance is using

View file

@ -5,5 +5,3 @@ try:
except DistributionNotFound:
# package is not installed
pass
default_app_config = "auditlog.apps.AuditlogConfig"

View file

@ -1 +0,0 @@
default_app_config = "auditlog_tests.apps.AuditlogTestConfig"