Skip to content
Snippets Groups Projects

Improve automatic emails with temporary urls

Merged Flavio TARSETTI requested to merge 542_temporary_urls into master
1 file
+ 20
0
Compare changes
  • Side-by-side
  • Inline
# -*- coding: utf-8 -*-
# Generated by Django 1.11.26 on 2020-05-13 18:48
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('accounts', '0012_accounts_temporary_url'),
]
operations = [
migrations.AlterField(
model_name='temporaryurl',
name='status',
field=models.CharField(choices=[('V', 'Supervisor validates supervisee'), ('Y', 'Self yearly revalidation from supervisee'), ('R', 'Supervisor rejects supervisee revalidation')], default='V', max_length=1),
),
]
Loading