diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-21 09:59:30 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-21 09:59:30 +0100 |
commit | 89da43fb56d036dc11420c9f7246c19854512517 (patch) | |
tree | 8440746edfb7120d31cd3655bd2d582df22ba75d /ctrack/compliance/apps.py | |
parent | 3a4073a6f6d4c6d03f2464120d7d8a6fdbed42b1 (diff) |
first stab at a new compliance app for doing overview view and later audit and inspection stuff
Diffstat (limited to 'ctrack/compliance/apps.py')
-rw-r--r-- | ctrack/compliance/apps.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ctrack/compliance/apps.py b/ctrack/compliance/apps.py new file mode 100644 index 0000000..e606f63 --- /dev/null +++ b/ctrack/compliance/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ComplianceConfig(AppConfig): + name = 'ctrack.compliance' + verbose_name = "Compliance" |