Skip to content

Commit

Permalink
✨ Feat: profileImageUrl로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ShimFFF committed Aug 21, 2024
1 parent 5f4c529 commit 218d022
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public static RecruitResponseDTO.studyDetailResponseDTO toStudyDetailDTO(User us

private static RecruitResponseDTO.CommentResponseDTO toCommentResponseDTO(StudyComment comment) {
return RecruitResponseDTO.CommentResponseDTO.builder()
.userImage(comment.getUser().getProfileImagePth())
.profileImageUrl(comment.getUser().getProfileImagePth())
.userNickName(comment.getUser().getNickname())
.commentOrder(comment.getCommentOrder())
.depth(comment.getDepth())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static class studyDetailResponseDTO {
@NoArgsConstructor
@AllArgsConstructor
public static class CommentResponseDTO {
String userImage;
String profileImageUrl;
String userNickName;
Integer commentOrder;
int depth;
Expand Down

0 comments on commit 218d022

Please sign in to comment.