Skip to content

Commit

Permalink
chore: increase file size allowed rewards endpoint (#501)
Browse files Browse the repository at this point in the history
increase file size allowed rewards endpoint
  • Loading branch information
melisaguevara authored Dec 4, 2024
1 parent e09ea6d commit c9d1ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/airdrop/entry-points/http/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class AirdropController {
@UseGuards(JwtAuthGuard, RolesGuard)
@UseInterceptors(
FileInterceptor("file", {
limits: { fileSize: 200 * 1024 * 1024 },
limits: { fileSize: 250 * 1024 * 1024 },
dest: "./uploads",
}),
)
Expand Down

0 comments on commit c9d1ff9

Please sign in to comment.