Skip to content

Commit

Permalink
Merge pull request #106 from UMC5th-bias/feat/#80
Browse files Browse the repository at this point in the history
[FIX #80] 성지순례 인증글 상세 정보 response 수정
  • Loading branch information
jorippppong committed Feb 19, 2024
2 parents 5e0c8de + dba3830 commit ef0f708
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public static GuestBookResponseDto.PilgrimageInfo toPilgrimageInfo(Pilgrimage pi
.longitude(pilgrimage.getLongitude())
.imageAnime(pilgrimage.getVirtualImage().getUrl())
.imageReal(pilgrimage.getRealImage().getUrl())
.addressEn(pilgrimage.getDetailAddressEn())
.addressJp(pilgrimage.getDetailAddressJp())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ public static class PilgrimageInfo{
private Double longitude;
private String imageAnime;
private String imageReal;
private String addressEn;
private String addressJp;
}

@Getter
Expand Down

0 comments on commit ef0f708

Please sign in to comment.