mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-16 00:13:12 +00:00
Leave user email blank / null for compatilibity
This commit is contained in:
parent
9e1cd17a1b
commit
b968f23b65
1 changed files with 2 additions and 0 deletions
|
@ -205,6 +205,8 @@ class User(
|
||||||
validators=[linux_user_validator],
|
validators=[linux_user_validator],
|
||||||
)
|
)
|
||||||
email = models.EmailField(
|
email = models.EmailField(
|
||||||
|
blank=True,
|
||||||
|
null=True,
|
||||||
help_text=_("External email address allowing us to contact you."),
|
help_text=_("External email address allowing us to contact you."),
|
||||||
)
|
)
|
||||||
local_email_redirect = models.BooleanField(
|
local_email_redirect = models.BooleanField(
|
||||||
|
|
Loading…
Reference in a new issue