From 2fe43bd8a17a99d8d540c5164f01d57673006c3d Mon Sep 17 00:00:00 2001 From: LujaeC Date: Thu, 30 Jan 2025 22:51:18 +0900 Subject: [PATCH] =?UTF-8?q?[PC-000]=20fix:=20ProfileBasicUpdateRequest=20?= =?UTF-8?q?=EC=A0=9C=EC=95=BD=20=EC=A1=B0=EA=B1=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../presentation/request/ProfileBasicUpdateRequest.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/api/src/main/java/org/yapp/domain/profile/presentation/request/ProfileBasicUpdateRequest.java b/api/src/main/java/org/yapp/domain/profile/presentation/request/ProfileBasicUpdateRequest.java index fb5cfd69..0ec88d4c 100644 --- a/api/src/main/java/org/yapp/domain/profile/presentation/request/ProfileBasicUpdateRequest.java +++ b/api/src/main/java/org/yapp/domain/profile/presentation/request/ProfileBasicUpdateRequest.java @@ -22,7 +22,11 @@ public record ProfileBasicUpdateRequest(@NotBlank(message = "닉네임은 비어 @NotBlank(message = "위치는 비어있을 수 없습니다.") String location, - String smokingStatus, String snsActivityLevel, + @NotBlank(message = "흡연 정보는 비어있을 수 없습니다") + String smokingStatus, + + @NotBlank(message = "SNS 활동 정보는 비어있을 수 없습니다.") + String snsActivityLevel, @Min(value = 1, message = "몸무게는 최소 1kg 이상이어야 합니다.") Integer weight,