Fix linting errors

This commit is contained in:
Dries Augustyns
2025-12-04 12:46:39 +01:00
parent 73a1cdfefa
commit 04634a447b
34 changed files with 517 additions and 534 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ export class Uploads {
@Post('image')
@Middleware([requireAuth, upload.single('image')])
@CatchAsync
public async uploadImage(req: Request, res: Response, next: NextFunction) {
public async uploadImage(req: Request, res: Response, _next: NextFunction) {
const auth = res.locals.auth as AuthResponse;
try {