Skip to content

Commit

Permalink
RAC-326 HotFix : 선배리스트 조회시 교수님 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ywj9811 committed Apr 2, 2024
1 parent 7958a92 commit 7a1929f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ public record SeniorSearchResponse(
String postgradu,
String major,
String lab,
String professor,
String[] keyword
) {}
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public static SeniorSearchResponse mapToSeniorSearch(Senior senior) {
String[] keyword = Arrays.copyOf(allKeywords, Math.min(3, allKeywords.length));

return new SeniorSearchResponse(senior.getSeniorId(), user.getProfile(), user.getNickName(),
info.getPostgradu(), info.getMajor(), info.getLab(),
info.getPostgradu(), info.getMajor(), info.getLab(), info.getProfessor(),
keyword);
}

Expand Down

0 comments on commit 7a1929f

Please sign in to comment.