From 29e08e74777010c2b501fc370abdf56d15bc754e Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 12 Jan 2021 22:59:46 +0100 Subject: [PATCH] stages/otp_*: fix app's verbose_name --- authentik/stages/otp_static/apps.py | 2 +- authentik/stages/otp_time/apps.py | 2 +- authentik/stages/otp_validate/apps.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/authentik/stages/otp_static/apps.py b/authentik/stages/otp_static/apps.py index 6792aae69..3dcb8dd63 100644 --- a/authentik/stages/otp_static/apps.py +++ b/authentik/stages/otp_static/apps.py @@ -7,5 +7,5 @@ class AuthentikStageOTPStaticConfig(AppConfig): name = "authentik.stages.otp_static" label = "authentik_stages_otp_static" - verbose_name = "authentik OTP.Static" + verbose_name = "authentik Stages.OTP.Static" mountpoint = "-/user/otp/static/" diff --git a/authentik/stages/otp_time/apps.py b/authentik/stages/otp_time/apps.py index 2e1056bbf..a8e8cf362 100644 --- a/authentik/stages/otp_time/apps.py +++ b/authentik/stages/otp_time/apps.py @@ -7,5 +7,5 @@ class AuthentikStageOTPTimeConfig(AppConfig): name = "authentik.stages.otp_time" label = "authentik_stages_otp_time" - verbose_name = "authentik OTP.Time" + verbose_name = "authentik Stages.OTP.Time" mountpoint = "-/user/otp/time/" diff --git a/authentik/stages/otp_validate/apps.py b/authentik/stages/otp_validate/apps.py index 05847379a..92b558cf0 100644 --- a/authentik/stages/otp_validate/apps.py +++ b/authentik/stages/otp_validate/apps.py @@ -7,4 +7,4 @@ class AuthentikStageOTPValidateConfig(AppConfig): name = "authentik.stages.otp_validate" label = "authentik_stages_otp_validate" - verbose_name = "authentik OTP.Validate" + verbose_name = "authentik Stages.OTP.Validate"