From 0f2058cc2add1067bc52492fec079165a5c8c824 Mon Sep 17 00:00:00 2001 From: Michael Barrett Date: Tue, 12 Nov 2024 15:59:26 +0000 Subject: [PATCH] Fixed inbox tab not showing user's own posts in admin-x-activitypub (#21601) refs [AP-588](https://linear.app/ghost/issue/AP-588/inbox-tab-not-showing-users-own-posts) Fixed inbox tab not showing user's own posts in admin-x-activitypub by ensuring that the `includeOwn` parameter is set to `true` when fetching the activities for the inbox tab --- apps/admin-x-activitypub/src/components/Inbox.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/admin-x-activitypub/src/components/Inbox.tsx b/apps/admin-x-activitypub/src/components/Inbox.tsx index 73cb641b2b..871055c030 100644 --- a/apps/admin-x-activitypub/src/components/Inbox.tsx +++ b/apps/admin-x-activitypub/src/components/Inbox.tsx @@ -21,6 +21,7 @@ const Inbox: React.FC = ({}) => { const {getActivitiesQuery, updateActivity} = useActivitiesForUser({ handle: 'index', + includeOwn: true, excludeNonFollowers: true, filter: { type: ['Create:Article', 'Create:Note', 'Announce:Note']