stages/authenticator_webauthn: add migration

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-12-14 10:09:35 +01:00
parent 47bab6c182
commit 59a51c859a
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# Generated by Django 4.0 on 2021-12-14 09:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("authentik_stages_authenticator_webauthn", "0004_auto_20210304_1850"),
]
operations = [
migrations.AddField(
model_name="authenticatewebauthnstage",
name="user_verification",
field=models.TextField(
choices=[
("UserVerificationRequirement.REQUIRED", "Required"),
("UserVerificationRequirement.PREFERRED", "Preferred"),
("UserVerificationRequirement.DISCOURAGED", "Discouraged"),
],
default="UserVerificationRequirement.PREFERRED",
),
),
]