Read incoming deletion activities

This commit is contained in:
Mouse Reeve
2020-10-16 17:00:10 -07:00
parent 22410e3f47
commit 7f579ffefa
4 changed files with 36 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class Status(OrderedCollectionPageMixin, BookWyrmModel):
# the created date can't be this, because of receiving federated posts
published_date = models.DateTimeField(default=timezone.now)
deleted = models.BooleanField(default=False)
deleted_date = models.DateTimeField(default=timezone.now)
deleted_date = models.DateTimeField()
favorites = models.ManyToManyField(
'User',
symmetrical=False,