summaryrefslogtreecommitdiff
path: root/server/controllers/refresh_tokens.controller.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/refresh_tokens.controller.ts')
-rw-r--r--server/controllers/refresh_tokens.controller.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/refresh_tokens.controller.ts b/server/controllers/refresh_tokens.controller.ts
index 6aa696f..efa9035 100644
--- a/server/controllers/refresh_tokens.controller.ts
+++ b/server/controllers/refresh_tokens.controller.ts
@@ -25,14 +25,14 @@ export class RefreshTokensController {
const tokenBody = this.jwtService.parseRefreshToken(refreshToken) as RefreshTokenBody;
const user = await this.usersService.find(tokenBody.userId, ['refreshTokens', 'userRoles']);
- const userRoles = await this.rolesService.findByIds(user.userRoles.map((ur) => ur.roleId));
+ const roles = await this.rolesService.findByIds(user.userRoles.map((ur) => ur.roleId));
const userRefreshToken = user.refreshTokens.find((t) => t.id === tokenBody.id);
if (!userRefreshToken) {
throw new HttpException('User refresh token not found', 401);
}
- const token = this.jwtService.issueToken({ userId: user.id, roles: userRoles.map((r) => r.key) });
+ const token = this.jwtService.issueToken({ userId: user.id, roles: roles.map((r) => r.key) });
return { token };
}
}