stages/authenticator_webauthn: add missing migration

This commit is contained in:
Jens Langhammer 2021-03-04 21:12:51 +01:00
parent 49db283e71
commit 0fe009d37c
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Generated by Django 3.1.7 on 2021-03-04 18:50
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("authentik_stages_authenticator_webauthn", "0003_webauthndevice_confirmed"),
]
operations = [
migrations.AlterModelOptions(
name="webauthndevice",
options={
"verbose_name": "WebAuthn Device",
"verbose_name_plural": "WebAuthn Devices",
},
),
]