mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-05 06:04:44 +00:00
Add app configs
This commit is contained in:
parent
edb93d08c9
commit
4bb432b489
4 changed files with 16 additions and 0 deletions
|
|
@ -1 +1,3 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
default_app_config = 'auditlog.apps.AuditlogConfig'
|
||||
|
|
|
|||
8
src/auditlog/apps.py
Normal file
8
src/auditlog/apps.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class AuditlogConfig(AppConfig):
|
||||
name = 'auditlog'
|
||||
verbose_name = "Audit log"
|
||||
|
|
@ -0,0 +1 @@
|
|||
default_app_config = 'auditlog_tests.apps.AuditlogTestConfig'
|
||||
5
src/auditlog_tests/apps.py
Normal file
5
src/auditlog_tests/apps.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class AuditlogTestConfig(AppConfig):
|
||||
name = 'auditlog_tests'
|
||||
Loading…
Reference in a new issue