log jwt token
All checks were successful
Test - Build & Deploy to Scaleway / build-and-push-images-lecoffre (push) Successful in 1m42s
Test - Build & Deploy to Scaleway / deploy-back-lecoffre (push) Successful in 5s
Test - Build & Deploy to Scaleway / deploy-cron-lecoffre (push) Successful in 3s

This commit is contained in:
Sosthene 2025-08-03 16:36:27 +02:00
parent dd981ec7ee
commit 25b9388f29

View File

@ -13,6 +13,8 @@ export default function authHandler(req: Request, response: Response, next: Next
return; return;
} }
console.log("token", token);
const authService = Container.get(AuthService); const authService = Container.get(AuthService);
authService.verifyAccessToken(token, (err, userPayload) => { authService.verifyAccessToken(token, (err, userPayload) => {
if (err) { if (err) {