Files
authentik/authentik/core/apps.py
2021-01-30 18:12:14 +01:00

17 lines
363 B
Python

"""authentik core app config"""
from importlib import import_module
from django.apps import AppConfig
class AuthentikCoreConfig(AppConfig):
"""authentik core app config"""
name = "authentik.core"
label = "authentik_core"
verbose_name = "authentik Core"
mountpoint = ""
def ready(self):
import_module("authentik.core.signals")