From 70627a7b4ee023f7345bd0e03097c1712a1ec3eb Mon Sep 17 00:00:00 2001 From: pooreumjung Date: Thu, 28 May 2026 03:03:46 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=9C=A0=EC=A0=80=20=ED=94=84=EB=A1=9C?= =?UTF-8?q?=ED=95=84=20=EC=A1=B0=ED=9A=8C=20=EC=8B=9C=20=EC=9D=B4=EB=A9=94?= =?UTF-8?q?=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/user/dto/response/GetUserProfileResponse.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/semosan/api/domain/user/dto/response/GetUserProfileResponse.java b/src/main/java/com/semosan/api/domain/user/dto/response/GetUserProfileResponse.java index 186d0fa..50088b5 100644 --- a/src/main/java/com/semosan/api/domain/user/dto/response/GetUserProfileResponse.java +++ b/src/main/java/com/semosan/api/domain/user/dto/response/GetUserProfileResponse.java @@ -18,7 +18,8 @@ public record GetUserProfileResponse( Double height, Double weight, ExerciseType exerciseType, - LocalDate birthDate + LocalDate birthDate, + String email ) { // User와 온보딩 정보로 프로필 조회 응답 DTO를 생성합니다. public static GetUserProfileResponse of(User user, UserOnboarding userOnboarding) { @@ -39,7 +40,8 @@ public static GetUserProfileResponse of(User user, UserOnboarding userOnboarding user.getHeight(), user.getWeight(), exerciseType, - user.getBirthDate() + user.getBirthDate(), + user.getEmail() ); } }