This commit is contained in:
2025-11-11 15:51:54 +00:00
parent 99ae905cb0
commit 3e0c5d2ecc
114 changed files with 9278 additions and 929 deletions

15
app/apps/audit/apps.py Normal file
View File

@@ -0,0 +1,15 @@
from django.apps import AppConfig
class AuditConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "apps.audit"
label = "audit"
verbose_name = "Audit"
def ready(self) -> None:
# Import signal handlers
from . import signals # noqa: F401
return super().ready()