chore(lint): fix no-unused-vars errors

This commit is contained in:
Panagiotis Papadopoulos
2025-03-06 23:21:47 +01:00
parent c8e36942fc
commit 7feb38ffa1
8 changed files with 6 additions and 8 deletions

View File

@@ -68,7 +68,7 @@ function handleRequest(req: Request, res: Response) {
function register(router: Router) {
// explicitly no CSRF middleware since it's meant to allow integration from external services
router.all("/custom/:path*", (req: Request, res: Response, next) => {
router.all("/custom/:path*", (req: Request, res: Response, _next) => {
cls.namespace.bindEmitter(req);
cls.namespace.bindEmitter(res);