This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/authentik/policies/apps.py

16 lines
371 B
Python

"""authentik policies app config"""
from importlib import import_module
from django.apps import AppConfig
class AuthentikPoliciesConfig(AppConfig):
"""authentik policies app config"""
name = "authentik.policies"
label = "authentik_policies"
verbose_name = "authentik Policies"
def ready(self):
import_module("authentik.policies.signals")