Audit: implement logging of basic events like login, logout, failed login
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
"""passbook audit app"""
|
||||
from importlib import import_module
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
@ -8,3 +10,6 @@ class PassbookAuditConfig(AppConfig):
|
||||
name = 'passbook.audit'
|
||||
label = 'passbook_audit'
|
||||
mountpoint = 'audit/'
|
||||
|
||||
def ready(self):
|
||||
import_module('passbook.audit.signals')
|
||||
|
Reference in New Issue
Block a user