From 6666b5cf27915142ae736df602452af8724722c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?= <99115509+hoheesu@users.noreply.github.com> Date: Mon, 13 Jan 2025 20:01:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20signup=20User=20entity=EB=B3=80=EA=B2=BD?= =?UTF-8?q?=EC=97=90=20=EB=A7=9E=EC=B6=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/user/user.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/user/user.service.ts b/src/user/user.service.ts index 7ad75d1..4974b4b 100644 --- a/src/user/user.service.ts +++ b/src/user/user.service.ts @@ -43,6 +43,7 @@ export class UserService { userEmail, userNickname, password: hashedPassword, + wins: 0, }); return this.userRepository.save(newUser); }