Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Commit

Permalink
fix: delete auth
Browse files Browse the repository at this point in the history
  • Loading branch information
YanceyOfficial committed Oct 24, 2021
1 parent a0ef117 commit 6d05615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uploader/uploader.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class UploaderResolver {
}

@Post('uploads')
@UseGuards(JwtAuthGuard)
// @UseGuards(JwtAuthGuard)
@UseInterceptors(FileInterceptor('file', { limits: { fieldSize: 10 * 1024 * 1024 } }))
public uploadFile(@UploadedFile() file: Express.Multer.File) {
return this.uploaderService.uploadFile(file)
Expand Down

0 comments on commit 6d05615

Please sign in to comment.