You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
field=models.CharField(help_text='The fingerprint of the key will be automatically generated after the key is validated', max_length=128, unique=True, verbose_name='Key fingerprint'),
21
+
model_name="publickey",
22
+
name="fingerprint",
23
+
field=models.CharField(
24
+
help_text="The fingerprint of the key will be automatically generated after the key is validated",
25
+
max_length=128,
26
+
unique=True,
27
+
verbose_name="Key fingerprint",
28
+
),
21
29
),
22
30
migrations.AlterField(
23
-
model_name='publickey',
24
-
name='key',
25
-
field=models.TextField(help_text='Please paste the key text in armored format ASCII', verbose_name='Key text'),
31
+
model_name="publickey",
32
+
name="key",
33
+
field=models.TextField(
34
+
help_text="Please paste the key text in armored format ASCII",
35
+
verbose_name="Key text",
36
+
),
26
37
),
27
38
migrations.AlterField(
28
-
model_name='publickey',
29
-
name='status',
30
-
field=models.CharField(choices=[('ACTIVE', 'Active'), ('PENDING', 'Pending'), ('INACTIVE', 'Inactive')], default='PENDING', help_text='Approval status of key', max_length=10),
0 commit comments