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
class AuthentikSourceLDAPConfig(authentik.blueprints.apps.ManagedAppConfig):
 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

label = 'authentik_sources_ldap'
verbose_name = 'authentik Sources.LDAP'
default = True