Makes outbox an optional field on the user table

This commit is contained in:
Mouse Reeve
2021-04-02 07:35:56 -07:00
parent 2174ea11ec
commit 45d229d712
3 changed files with 27 additions and 3 deletions

View File

@ -21,9 +21,9 @@ class Person(ActivityObject):
preferredUsername: str
inbox: str
outbox: str
followers: str
publicKey: PublicKey
outbox: str = None
endpoints: Dict = None
name: str = None
summary: str = None