Stop storing activitypub json in db entirely

This commit is contained in:
Mouse Reeve
2020-02-16 18:22:01 -08:00
parent 8d081548cd
commit f28ee934fc
7 changed files with 150 additions and 288 deletions

View File

@ -39,7 +39,7 @@ def home(request):
# TODO: this is fundamentally not how the feed should work I think? it
# should do something smart with inboxes. (in this implementation it would
# show DMs meant for other local users)
activities = models.Activity.objects.filter(
activities = models.Status.objects.filter(
user__in=following,
).select_subclasses().order_by(
'-created_date'