Browse Source

Leave user email blank / null for compatilibity

release-2.9
Jean-Romain Garnier 6 years ago
committed by Gabriel Detraz
parent
commit
b968f23b65
  1. 2
      users/models.py

2
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(

Loading…
Cancel
Save