1
0
Fork 0

handle image attachments recursively

This commit is contained in:
Mouse Reeve 2020-11-27 20:11:22 -08:00
parent 2480690378
commit 4626d94ab9
7 changed files with 71 additions and 55 deletions

View file

@ -11,7 +11,8 @@ class Attachment(ActivitypubMixin, BookWyrmModel):
status = models.ForeignKey(
'Status',
on_delete=models.CASCADE,
related_name='attachments'
related_name='attachments',
null=True
)
class Meta:
''' one day we'll have other types of attachments besides images '''

View file

@ -90,7 +90,6 @@ class Status(OrderedCollectionPageMixin, BookWyrmModel):
ActivityMapping(
'attachment', 'attachments',
lambda x: image_attachments_formatter(x.all()),
activitypub.image_attachments_formatter
)
]