From 41edd22dc8b368fe5d2b498468a70fbddc107131 Mon Sep 17 00:00:00 2001 From: seonghyeok Date: Mon, 2 Feb 2026 21:08:07 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EB=A9=98=ED=86=A0=EB=A7=81=20?= =?UTF-8?q?=EC=A1=B0=ED=9A=8C=20=EC=9D=91=EB=8B=B5=EC=97=90=20mentoringId?= =?UTF-8?q?=20=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../solidconnection/mentor/dto/MentoringForMentorResponse.java | 2 ++ 1 file changed, 2 insertions(+) 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 46791d071..2780da0d6 100644 --- a/src/main/java/com/example/solidconnection/mentor/dto/MentoringForMentorResponse.java +++ b/src/main/java/com/example/solidconnection/mentor/dto/MentoringForMentorResponse.java @@ -6,6 +6,7 @@ import java.time.ZonedDateTime; public record MentoringForMentorResponse( + long mentoringId, Long roomId, String profileImageUrl, String nickname, @@ -16,6 +17,7 @@ public record MentoringForMentorResponse( public static MentoringForMentorResponse of(Mentoring mentoring, SiteUser partner, Long roomId) { return new MentoringForMentorResponse( + mentoring.getId(), roomId, partner.getProfileImageUrl(), partner.getNickname(),