From 018ea8d339a926253c2df59f10814c54121dfcbb Mon Sep 17 00:00:00 2001 From: nayonsoso Date: Mon, 18 Aug 2025 00:15:41 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20isConfirmed=20=EB=8C=80=EC=8B=A0=20?= =?UTF-8?q?verifyStatus=EB=A5=BC=20=EC=9D=91=EB=8B=B5=ED=95=98=EB=8F=84?= =?UTF-8?q?=EB=A1=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mentor/dto/MentoringForMentorResponse.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/example/solidconnection/mentor/dto/MentoringForMentorResponse.java b/src/main/java/com/example/solidconnection/mentor/dto/MentoringForMentorResponse.java index 54622d821..8a41fba84 100644 --- a/src/main/java/com/example/solidconnection/mentor/dto/MentoringForMentorResponse.java +++ b/src/main/java/com/example/solidconnection/mentor/dto/MentoringForMentorResponse.java @@ -1,5 +1,6 @@ package com.example.solidconnection.mentor.dto; +import com.example.solidconnection.common.VerifyStatus; import com.example.solidconnection.mentor.domain.Mentoring; import com.example.solidconnection.siteuser.domain.SiteUser; import java.time.ZonedDateTime; @@ -9,7 +10,7 @@ public record MentoringForMentorResponse( String profileImageUrl, String nickname, boolean isChecked, - boolean isConfirmed, + VerifyStatus verifyStatus, ZonedDateTime createdAt ) { @@ -19,7 +20,7 @@ public static MentoringForMentorResponse of(Mentoring mentoring, SiteUser partne partner.getProfileImageUrl(), partner.getNickname(), mentoring.getCheckedAtByMentor() != null, - mentoring.getConfirmedAt() != null, + mentoring.getVerifyStatus(), mentoring.getCreatedAt() ); }