From 170980a0a649ec3b233f1d00585ecf8efcd0c0e2 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Thu, 14 May 2026 21:19:35 +0900 Subject: [PATCH] Update WorldRoomService.ts --- packages/backend/src/core/WorldRoomService.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages/backend/src/core/WorldRoomService.ts b/packages/backend/src/core/WorldRoomService.ts index ebbdb9ccd3..05ef7e68fd 100644 --- a/packages/backend/src/core/WorldRoomService.ts +++ b/packages/backend/src/core/WorldRoomService.ts @@ -19,9 +19,23 @@ import { IdentifiableError } from '@/misc/identifiable-error.js'; import { ModerationLogService } from '@/core/ModerationLogService.js'; import { QueryService } from '@/core/QueryService.js'; -// TODO: やっていく const driveFileReferencingOptions = { + clippedPicture: ['customPicture'], tapestry: ['customPicture'], + poster: ['customPicture'], + pictureFrame: ['customPicture'], + tabletopPictureFrame: ['customPicture'], + tabletopGlassPictureFrame: ['customPicture'], + wallCanvas: ['customPicture'], + wallGlassPictureFrame: ['customPicture'], + tabletopFlag: ['customPicture'], + tabletopLcdButtonsController: ['customPicture'], + djPlayer: ['customPicture'], + monitor: ['customPicture'], + allInOnePc: ['customPicture'], + laptopPc: ['customPicture'], + handheldGameConsole: ['customPicture'], + largeMousepad: ['customPicture'], } as Record; @Injectable()