mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
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
This commit is contained in:
parent
d555cc6612
commit
0f2058cc2a
1 changed files with 1 additions and 0 deletions
|
@ -21,6 +21,7 @@ const Inbox: React.FC<InboxProps> = ({}) => {
|
|||
|
||||
const {getActivitiesQuery, updateActivity} = useActivitiesForUser({
|
||||
handle: 'index',
|
||||
includeOwn: true,
|
||||
excludeNonFollowers: true,
|
||||
filter: {
|
||||
type: ['Create:Article', 'Create:Note', 'Announce:Note']
|
||||
|
|
Loading…
Add table
Reference in a new issue