diff --git a/src/auth/auth.controller.ts b/src/auth/auth.controller.ts index 2c088ce..8fe9263 100644 --- a/src/auth/auth.controller.ts +++ b/src/auth/auth.controller.ts @@ -67,7 +67,6 @@ export class AuthController { isMfaEnabled: user.isMfaEnabled, mfaUrl, }; - await this.AppService.updateRanking(user.ladderScore, user.id); return res.send(userSigninResponseDto); } @@ -159,10 +158,6 @@ export class AuthController { isMfaEnabled: false, mfaUrl: undefined, }; - Logger.log( - `updateRanking(ladderScore, id): ${user.ladderScore}, ${user.id}`, - ); - await this.AppService.updateRanking(user.ladderScore, user.id); // TODO: 필요한 부분인가? return res.send(userSigninResponseDto); }