This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-11-23 16:05:41 +00:00
|
|
|
"""passbook audit app"""
|
2018-12-10 12:47:51 +00:00
|
|
|
from importlib import import_module
|
|
|
|
|
2018-11-23 16:05:41 +00:00
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
|
|
|
class PassbookAuditConfig(AppConfig):
|
|
|
|
"""passbook audit app"""
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
name = "passbook.audit"
|
|
|
|
label = "passbook_audit"
|
|
|
|
verbose_name = "passbook Audit"
|
|
|
|
mountpoint = "audit/"
|
2018-12-10 12:47:51 +00:00
|
|
|
|
|
|
|
def ready(self):
|
2019-12-31 11:51:16 +00:00
|
|
|
import_module("passbook.audit.signals")
|