code cleanup

This commit is contained in:
Mouse Reeve
2020-11-01 08:54:10 -08:00
parent 4684a83e6f
commit c334451216
3 changed files with 26 additions and 24 deletions

View File

@ -59,6 +59,7 @@ class Status(OrderedCollectionPageMixin, BookWyrmModel):
@property
def ap_tag(self):
''' books or (eventually) users tagged in a post '''
tags = []
for book in self.mention_books.all():
tags.append(activitypub.Link(
@ -117,7 +118,7 @@ class Status(OrderedCollectionPageMixin, BookWyrmModel):
**kwargs
)
def to_activity(self, **kwargs):
def to_activity(self, pure=False):
''' return tombstone if the status is deleted '''
if self.deleted:
return activitypub.Tombstone(
@ -126,7 +127,7 @@ class Status(OrderedCollectionPageMixin, BookWyrmModel):
deleted=self.deleted_date.isoformat(),
published=self.deleted_date.isoformat()
).serialize()
return ActivitypubMixin.to_activity(self, **kwargs)
return ActivitypubMixin.to_activity(self, pure=pure)
class GeneratedNote(Status):