From 8864eab3b631e815c859952965f2bd2b4fa21b56 Mon Sep 17 00:00:00 2001 From: JINHYEONG KIM Date: Fri, 6 Dec 2024 18:34:56 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EA=B7=B8=EB=A3=B9=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1=EC=8B=9C=20=EC=9C=A0=EC=A0=80=20=EC=83=81=ED=83=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/go/alarm/group/presentation/GroupConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/go/alarm/group/presentation/GroupConverter.java b/src/main/java/go/alarm/group/presentation/GroupConverter.java index 3181495..d0ba44a 100644 --- a/src/main/java/go/alarm/group/presentation/GroupConverter.java +++ b/src/main/java/go/alarm/group/presentation/GroupConverter.java @@ -75,7 +75,7 @@ public static UserGroup toUserGroup(User user, Boolean isAgree){ .user(user) .phone(user.getPhone()) .isAgree(isAgree) - .isWakeup(Boolean.FALSE) + .isWakeup(Boolean.TRUE) .isDisturbBanMode(Boolean.FALSE) .build(); }