mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-22 14:21:50 +00:00
14 lines
369 B
Python
14 lines
369 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AuditlogTestConfig(AppConfig):
|
|
name = "auditlog_tests"
|
|
|
|
def ready(self) -> None:
|
|
from auditlog_tests.test_registry import (
|
|
create_only_auditlog,
|
|
update_only_auditlog,
|
|
)
|
|
|
|
create_only_auditlog.register_from_settings()
|
|
update_only_auditlog.register_from_settings()
|