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/reputation/apps.py

16 lines
434 B
Python
Raw Normal View History

2020-12-05 21:08:42 +00:00
"""Authentik reputation_policy app config"""
from importlib import import_module
from django.apps import AppConfig
class AuthentikPolicyReputationConfig(AppConfig):
"""Authentik reputation app config"""
name = "authentik.policies.reputation"
label = "authentik_policies_reputation"
verbose_name = "authentik Policies.Reputation"
def ready(self):
import_module("authentik.policies.reputation.signals")