17 lines
370 B
Python
17 lines
370 B
Python
|
"""authentik events app"""
|
||
|
from importlib import import_module
|
||
|
|
||
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class AuthentikEventsConfig(AppConfig):
|
||
|
"""authentik events app"""
|
||
|
|
||
|
name = "authentik.events"
|
||
|
label = "authentik_events"
|
||
|
verbose_name = "authentik Events"
|
||
|
mountpoint = "events/"
|
||
|
|
||
|
def ready(self):
|
||
|
import_module("authentik.events.signals")
|