From 70e0b951c44e2286dd9563fd948d71bd912e1c04 Mon Sep 17 00:00:00 2001 From: sdw086 Date: Thu, 5 Mar 2026 17:26:53 +0900 Subject: [PATCH] =?UTF-8?q?[=ED=8C=8C=EC=9D=BC=20=EC=97=85=EB=A1=9C?= =?UTF-8?q?=EB=93=9C]=20tusHook=20=EC=9E=91=EC=97=85=20-=20=EC=A7=84?= =?UTF-8?q?=ED=96=89=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/alist/api/common/modules/file/FileController.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/alist/api/common/modules/file/FileController.java b/src/main/java/com/alist/api/common/modules/file/FileController.java index 1995654..9d89da3 100644 --- a/src/main/java/com/alist/api/common/modules/file/FileController.java +++ b/src/main/java/com/alist/api/common/modules/file/FileController.java @@ -83,9 +83,10 @@ public class FileController { } @PostMapping("/tusHook") - public ResponseEntity> tusHook(@RequestBody TusHookForm tusHookForm) { - log.info("tusHookForm: {}", tusHookForm); - fileService.insertFileAndSave(tusHookForm.tusHookDto()); + public ResponseEntity> tusHook(@RequestBody Map payload) { + // log.info("tusHookForm: {}", tusHookForm); + // fileService.insertFileAndSave(tusHookForm.tusHookDto()); + log.info("[tusHook] payload={}", payload); return ApiResponse.entity("", ApiResponseCode.CODE_200); } }