From 138f7e240760ee035f5f5fdbc82cea858e1bba63 Mon Sep 17 00:00:00 2001 From: Vins Date: Mon, 31 Jul 2023 13:50:11 +0200 Subject: [PATCH] Redploy back --- src/app/api/idnot/UserController.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/api/idnot/UserController.ts b/src/app/api/idnot/UserController.ts index 2dd2029a..99df1abf 100644 --- a/src/app/api/idnot/UserController.ts +++ b/src/app/api/idnot/UserController.ts @@ -43,6 +43,7 @@ export default class UserController extends ApiController { if (!id) throw new Error("idnot is required"); const payload = await this.authService.getUserJwtPayload(id!); + const accessToken = this.authService.generateAccessToken(payload); const refreshToken = this.authService.generateRefreshToken(payload);