From 51b3c52181a8886f0869fb929c26261499af4ad6 Mon Sep 17 00:00:00 2001 From: Jean-Romain Garnier Date: Tue, 21 Apr 2020 15:01:03 +0000 Subject: [PATCH] Leave user email blank / null for compatilibity --- users/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/users/models.py b/users/models.py index 8958a95d..42df3f5a 100755 --- a/users/models.py +++ b/users/models.py @@ -205,6 +205,8 @@ class User( validators=[linux_user_validator], ) email = models.EmailField( + blank=True, + null=True, help_text=_("External email address allowing us to contact you."), ) local_email_redirect = models.BooleanField(