蜗蜗
Results
2
issues of
蜗蜗
``` async refreshToken(accessToken: AccessTokenEntity) { const { user, refreshToken } = accessToken if (refreshToken) { const now = dayjs() // 判断refreshToken是否过期 if (now.isAfter(refreshToken.expired_at)) return null const roleIds = await this.roleService.getRoleIdsByUser(user.id)...