Skip to content

Commit 07c4e83

Browse files
committed
feat: add optional path configuration for file storage service
1 parent 2251eba commit 07c4e83

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/file-storage.service.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ export abstract class FileStorageService<FileStoreResult, FileDeleteResult> {
66
file: Buffer,
77
path: string,
88
config?: any,
9+
options?: {
10+
pathWithoutBucket?: boolean;
11+
},
912
): Promise<FileStoreResult>;
1013

1114
abstract storeBase64(

0 commit comments

Comments
 (0)