
* *: deduplicate boilerplate for importing related models Signed-off-by: Jens Langhammer <jens@goauthentik.io> * also auto-import .checks Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix error during prometheus metrics from #8435 Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
13 lines
317 B
Python
13 lines
317 B
Python
"""authentik ldap source config"""
|
|
|
|
from authentik.blueprints.apps import ManagedAppConfig
|
|
|
|
|
|
class AuthentikSourceLDAPConfig(ManagedAppConfig):
|
|
"""Authentik ldap app config"""
|
|
|
|
name = "authentik.sources.ldap"
|
|
label = "authentik_sources_ldap"
|
|
verbose_name = "authentik Sources.LDAP"
|
|
default = True
|