Email should *not* be unique

turns out this is jank-city when you try to federate
This commit is contained in:
Mouse Reeve
2020-10-05 14:48:26 -07:00
parent 93738bb48c
commit 0a9809e6b3
5 changed files with 27 additions and 2 deletions

View File

@ -99,7 +99,7 @@ class EditUserForm(CustomForm):
class Meta:
model = models.User
fields = [
'avatar', 'name', 'summary', 'manually_approves_followers'
'avatar', 'name', 'email', 'summary', 'manually_approves_followers'
]
help_texts = {f: None for f in fields}