authentik.stages.password.apps
authentik core app config
1"""authentik core app config""" 2 3from authentik.blueprints.apps import ManagedAppConfig 4 5 6class AuthentikStagePasswordConfig(ManagedAppConfig): 7 """authentik password stage config""" 8 9 name = "authentik.stages.password" 10 label = "authentik_stages_password" 11 verbose_name = "authentik Stages.Password" 12 default = True
7class AuthentikStagePasswordConfig(ManagedAppConfig): 8 """authentik password stage config""" 9 10 name = "authentik.stages.password" 11 label = "authentik_stages_password" 12 verbose_name = "authentik Stages.Password" 13 default = True
authentik password stage config
name =
'authentik.stages.password'