Skip to content

Commit

Permalink
Merge pull request #252 from Gongjakso/feat/apply
Browse files Browse the repository at this point in the history
fix: ApplyRes 응답 데이터 변경
  • Loading branch information
yumzen authored Sep 24, 2024
2 parents cd6b9c8 + c4e91cd commit 7487b51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public record ApplyRes(

LocalDate finishedAt,

String teamName,
String title,

String leaderName,

Expand All @@ -74,7 +74,7 @@ public static ApplyRes of(Apply apply) {
return ApplyRes.builder()
.id(apply.getId())
.teamId(apply.getTeam().getId())
.teamName(apply.getTeam().getTitle())
.title(apply.getTeam().getTitle())
.applicantId(apply.getMember().getId())
.applicantName(apply.getMember().getName())
.applicantPhone(apply.getMember().getPhone())
Expand Down

0 comments on commit 7487b51

Please sign in to comment.