diff --git a/authentik/stages/authenticator_webauthn/migrations/0005_authenticatewebauthnstage_user_verification.py b/authentik/stages/authenticator_webauthn/migrations/0005_authenticatewebauthnstage_user_verification.py index 91dea868b..12c4b1815 100644 --- a/authentik/stages/authenticator_webauthn/migrations/0005_authenticatewebauthnstage_user_verification.py +++ b/authentik/stages/authenticator_webauthn/migrations/0005_authenticatewebauthnstage_user_verification.py @@ -15,11 +15,11 @@ class Migration(migrations.Migration): name="user_verification", field=models.TextField( choices=[ - ("UserVerificationRequirement.REQUIRED", "Required"), - ("UserVerificationRequirement.PREFERRED", "Preferred"), - ("UserVerificationRequirement.DISCOURAGED", "Discouraged"), + ("required", "Required"), + ("preferred", "Preferred"), + ("discouraged", "Discouraged"), ], - default="UserVerificationRequirement.PREFERRED", + default="preferred", ), ), ]