mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
Leave user email blank / null for compatilibity
This commit is contained in:
parent
8befbb8ad8
commit
259e9eff51
1 changed files with 2 additions and 0 deletions
|
@ -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…
Reference in a new issue