* fix: remove help/personal-information and the prompt-for-consent email management command. * fix: remove gdpr treatment except for consent checkbox. Rename Submit. * fix: drom the consent column from Person and Person.History * fix: remove the consent boolean. Reorganize the account info form. * chore: reorder migrations
19 lines
492 B
Python
19 lines
492 B
Python
# Copyright The IETF Trust 2022, All Rights Reserved
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('person', '0026_drop_consent'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='personevent',
|
|
name='type',
|
|
field=models.CharField(choices=[('apikey_login', 'API key login'), ('email_address_deactivated', 'Email address deactivated')], max_length=50),
|
|
),
|
|
]
|