From 4f7e21f0f1ad1636046b831602fd0591910a669d Mon Sep 17 00:00:00 2001 From: jj Date: Mon, 17 Nov 2025 18:35:09 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=83=9D=EC=9D=BC=20=EC=95=8C=EB=A6=BC?= =?UTF-8?q?=20=ED=97=88=EC=9A=A9=20=EC=97=AC=EB=B6=80=20=EC=A1=B0=ED=9A=8C?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/response/NotificationSettingResponse.java | 5 ++++- .../domain/user/application/mapper/UserSettingMapper.java | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/leets/leenk/domain/user/application/dto/response/NotificationSettingResponse.java b/src/main/java/leets/leenk/domain/user/application/dto/response/NotificationSettingResponse.java index 51da5118..a77dd30d 100644 --- a/src/main/java/leets/leenk/domain/user/application/dto/response/NotificationSettingResponse.java +++ b/src/main/java/leets/leenk/domain/user/application/dto/response/NotificationSettingResponse.java @@ -17,6 +17,9 @@ public record NotificationSettingResponse( boolean isNewFeedNotify, @Schema(description = "공감 알림", example = "true") - boolean isNewReactionNotify + boolean isNewReactionNotify, + + @Schema(description = "생일 알림", example = "true") + boolean isBirthdayNotify ) { } diff --git a/src/main/java/leets/leenk/domain/user/application/mapper/UserSettingMapper.java b/src/main/java/leets/leenk/domain/user/application/mapper/UserSettingMapper.java index 1e34877d..0a116440 100644 --- a/src/main/java/leets/leenk/domain/user/application/mapper/UserSettingMapper.java +++ b/src/main/java/leets/leenk/domain/user/application/mapper/UserSettingMapper.java @@ -24,6 +24,7 @@ public NotificationSettingResponse toNotificationSettingResponse(UserSetting use .isLeenkStatusNotify(userSetting.isLeenkStatusNotify()) .isNewFeedNotify(userSetting.isNewFeedNotify()) .isNewReactionNotify(userSetting.isNewReactionNotify()) + .isBirthdayNotify(userSetting.isBirthdayNotify()) .build(); } }