Adds privacy and recipient details to list items

This commit is contained in:
Mouse Reeve
2021-04-08 14:53:45 -07:00
parent 1f930ba821
commit b1491c2ac6
4 changed files with 59 additions and 27 deletions

View File

@ -61,9 +61,7 @@ class ListItem(CollectionItemMixin, BookWyrmModel):
book = fields.ForeignKey(
"Edition", on_delete=models.PROTECT, activitypub_field="book"
)
book_list = models.ForeignKey(
"List", on_delete=models.CASCADE
)
book_list = models.ForeignKey("List", on_delete=models.CASCADE)
user = fields.ForeignKey(
"User", on_delete=models.PROTECT, activitypub_field="actor"
)