spec(ActivityPub): 個別ユーザーのinboxに届いた限定公開のPostはそのユーザーに閲覧権限があると見なす (MisskeyIO#361)

This commit is contained in:
まっちゃとーにゅ
2024-01-16 07:36:34 +09:00
committed by GitHub
parent fd0966bc8c
commit 83bf53c600
8 changed files with 112 additions and 24 deletions

View File

@@ -180,7 +180,7 @@ export class InboxProcessorService {
});
// アクティビティを処理
await this.apInboxService.performActivity(authUser.user, activity);
await this.apInboxService.performActivity(authUser.user, activity, job.data.user?.id);
return 'ok';
}
}

View File

@@ -26,6 +26,7 @@ export type DeliverJobData = {
};
export type InboxJobData = {
user?: ThinUser;
activity: IActivity;
signature: httpSignature.IParsedSignature;
};