Skip to content

Commit

Permalink
increase files limit to 30 MB
Browse files Browse the repository at this point in the history
  • Loading branch information
Martbul committed Jul 22, 2024
1 parent ce6f8ed commit 571d8d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class CampaignApplicationController {
@Post('create')
@UseInterceptors(
FilesInterceptor('file', 10, {
limits: { fileSize: 1024 * 1024 * 10 },
limits: { fileSize: 1024 * 1024 * 30 },
fileFilter: (_req: Request, file, cb) => {
validateFileType(file, cb)
},
Expand Down

0 comments on commit 571d8d9

Please sign in to comment.