Hide Read activity from the admin inbox

This commit is contained in:
Thomas Sileo 2022-07-12 22:51:42 +02:00
parent b34ac82c3a
commit d2e8cc0a6b
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ async def admin_inbox(
) -> templates.TemplateResponse:
where = [
models.InboxObject.ap_type.not_in(
["Accept", "Delete", "Create", "Update", "Undo"]
["Accept", "Delete", "Create", "Update", "Undo", "Read"]
),
models.InboxObject.is_deleted.is_(False),
]