authentik.sources.saml.apps

Authentik SAML app config

 1"""Authentik SAML app config"""
 2
 3from authentik.blueprints.apps import ManagedAppConfig
 4
 5
 6class AuthentikSourceSAMLConfig(ManagedAppConfig):
 7    """authentik saml source app config"""
 8
 9    name = "authentik.sources.saml"
10    label = "authentik_sources_saml"
11    verbose_name = "authentik Sources.SAML"
12    mountpoint = "source/saml/"
13    default = True
class AuthentikSourceSAMLConfig(authentik.blueprints.apps.ManagedAppConfig):
 7class AuthentikSourceSAMLConfig(ManagedAppConfig):
 8    """authentik saml source app config"""
 9
10    name = "authentik.sources.saml"
11    label = "authentik_sources_saml"
12    verbose_name = "authentik Sources.SAML"
13    mountpoint = "source/saml/"
14    default = True

authentik saml source app config

label = 'authentik_sources_saml'
verbose_name = 'authentik Sources.SAML'
mountpoint = 'source/saml/'
default = True