Files
authentik/authentik/events/apps.py
2020-12-28 14:32:34 +01:00

16 lines
343 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"
def ready(self):
import_module("authentik.events.signals")