update: add signature and profile

This commit is contained in:
wayanrivan
2026-04-27 09:55:41 +07:00
parent c41cb9a068
commit e390ad51d7
7 changed files with 558 additions and 290 deletions

View File

@ -270,7 +270,7 @@ export class AuthController {
const repo = OrmHelper.DB.getRepository(UserRefreshToken)
const affected = (await repo.delete({ refresh_token: param.refresh_token })).affected
const affected = (await repo.delete({ refresh_token: param.refresh_token })).affected ?? 0
if (affected > 0) {
return ReturnHelper.successResponseAny(res, 200, Language.lang.success_logout)