From e1a1b780d02a9b1d80f51cc57a6451ac6136d89b Mon Sep 17 00:00:00 2001 From: ItsMalma Date: Thu, 18 Dec 2025 15:15:12 +0700 Subject: [PATCH] disable remove file --- src/common/services/file-storage/local.file-storage.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/services/file-storage/local.file-storage.ts b/src/common/services/file-storage/local.file-storage.ts index 23d47e5..a73db2f 100644 --- a/src/common/services/file-storage/local.file-storage.ts +++ b/src/common/services/file-storage/local.file-storage.ts @@ -52,8 +52,6 @@ export class LocalFileStorage extends AbstractFileStorage { } public async removeFile(name: string): Promise { - const filePath = join(STORAGE_DIRECTORY, name); - - await Bun.file(filePath).delete(); + // TODO: Implement remove file } }