authentik.stages.user_write.apps
authentik write stage app config
1"""authentik write stage app config""" 2 3from authentik.blueprints.apps import ManagedAppConfig 4 5 6class AuthentikStageUserWriteConfig(ManagedAppConfig): 7 """authentik write stage config""" 8 9 name = "authentik.stages.user_write" 10 label = "authentik_stages_user_write" 11 verbose_name = "authentik Stages.User Write" 12 default = True
7class AuthentikStageUserWriteConfig(ManagedAppConfig): 8 """authentik write stage config""" 9 10 name = "authentik.stages.user_write" 11 label = "authentik_stages_user_write" 12 verbose_name = "authentik Stages.User Write" 13 default = True
authentik write stage config
name =
'authentik.stages.user_write'