Skip to content

Commit

Permalink
[FIX] 인터뷰 상세조회 DTO 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jan 11, 2024
1 parent 9877b16 commit ba65ecb
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ public record InterviewDetailResponse(
@Schema(description = "인터뷰 대상자 전공")
String major,

@Schema(description = "인터뷰 목록 페이지에서 사용하는 섬네일 텍스트")
String thumbnailText,

@Schema(description = "인터뷰 대상자 image url")
String imageUrl,
List<InterviewAnswerResponse> interviewAnswers
Expand All @@ -40,7 +37,6 @@ public static InterviewDetailResponse of(Interview interview, List<InterviewAnsw
interview.getPart().toString(),
interview.getName(),
interview.getMajor(),
interview.getOneLineAnswer(),
interview.getImageUrl(),
interviewAnswers
);
Expand Down

0 comments on commit ba65ecb

Please sign in to comment.