stages/authenticator_webauthn: add migration
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
47bab6c182
commit
59a51c859a
|
@ -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",
|
||||
),
|
||||
),
|
||||
]
|
Reference in New Issue