2
0

fix(bot): 🐛 Accept file upload without fileType

This commit is contained in:
Baptiste Arnaud
2022-07-01 17:52:58 +02:00
parent 407cace752
commit 38a3ee7010
3 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,7 @@ import { config, Endpoint, S3 } from 'aws-sdk'
type GeneratePresignedUrlProps = {
filePath: string
fileType: string
fileType?: string
sizeLimit?: number
}