authentik.sources.ldap.apps
authentik ldap source config
1"""authentik ldap source config""" 2 3from authentik.blueprints.apps import ManagedAppConfig 4 5 6class AuthentikSourceLDAPConfig(ManagedAppConfig): 7 """Authentik ldap app config""" 8 9 name = "authentik.sources.ldap" 10 label = "authentik_sources_ldap" 11 verbose_name = "authentik Sources.LDAP" 12 default = True
7class AuthentikSourceLDAPConfig(ManagedAppConfig): 8 """Authentik ldap app config""" 9 10 name = "authentik.sources.ldap" 11 label = "authentik_sources_ldap" 12 verbose_name = "authentik Sources.LDAP" 13 default = True
Authentik ldap app config
name =
'authentik.sources.ldap'