Skip to content
Snippets Groups Projects
Commit 3ef6af78 authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-140: Fixing formatting

parent 21341895
No related branches found
No related tags found
1 merge request!195GREG-140: Remove other identity type
Pipeline #103167 passed
......@@ -6,13 +6,23 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('greg', '0017_consent_choices'),
("greg", "0017_consent_choices"),
]
operations = [
migrations.AlterField(
model_name='identity',
name='type',
field=models.CharField(choices=[('feide_id', 'Feide Id'), ('feide_email', 'Feide Email'), ('passport_number', 'Passport Number'), ('norwegian_national_id_number', 'Norwegian National Id Number'), ('private_email', 'Private Email'), ('private_mobile', 'Private Mobile Number')], max_length=64),
model_name="identity",
name="type",
field=models.CharField(
choices=[
("feide_id", "Feide Id"),
("feide_email", "Feide Email"),
("passport_number", "Passport Number"),
("norwegian_national_id_number", "Norwegian National Id Number"),
("private_email", "Private Email"),
("private_mobile", "Private Mobile Number"),
],
max_length=64,
),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment