authentik.stages.authenticator_totp.apps

TOTP

 1"""TOTP"""
 2
 3from authentik.blueprints.apps import ManagedAppConfig
 4
 5
 6class AuthentikStageAuthenticatorTOTPConfig(ManagedAppConfig):
 7    """TOTP App config"""
 8
 9    name = "authentik.stages.authenticator_totp"
10    label = "authentik_stages_authenticator_totp"
11    verbose_name = "authentik Stages.Authenticator.TOTP"
12    default = True
class AuthentikStageAuthenticatorTOTPConfig(authentik.blueprints.apps.ManagedAppConfig):
 7class AuthentikStageAuthenticatorTOTPConfig(ManagedAppConfig):
 8    """TOTP App config"""
 9
10    name = "authentik.stages.authenticator_totp"
11    label = "authentik_stages_authenticator_totp"
12    verbose_name = "authentik Stages.Authenticator.TOTP"
13    default = True

TOTP App config

label = 'authentik_stages_authenticator_totp'
verbose_name = 'authentik Stages.Authenticator.TOTP'
default = True