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

@ -18,7 +18,6 @@ class User(OrderedCollectionPageMixin, AbstractUser):
''' a user who wants to read books '''
private_key = models.TextField(blank=True, null=True)
public_key = models.TextField(blank=True, null=True)
email = models.EmailField(unique=True)
inbox = models.CharField(max_length=255, unique=True)
shared_inbox = models.CharField(max_length=255, blank=True, null=True)
federated_server = models.ForeignKey(