mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
fix: Fix welcome email bugs
Send only when new user is created Require email address when user created Resolves #32
This commit is contained in:
18
people/migrations/0018_require_user_email.py
Normal file
18
people/migrations/0018_require_user_email.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.10 on 2020-05-28 15:17
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('people', '0017_answerset_replaced_timestamp'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='user',
|
||||
name='email',
|
||||
field=models.EmailField(max_length=254, verbose_name='email address'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user