Skip to content

Commit

Permalink
Merge pull request #283 from OutDecision/issue/271
Browse files Browse the repository at this point in the history
🎨 [UPDATE]: 칭호 데이터 보내기
  • Loading branch information
baeksom authored Jun 2, 2024
2 parents ba74b9c + 78ff3b7 commit c364740
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 @@ -51,7 +51,7 @@ public static class CommentsDTO {
Long memberId;
String nickname;
String profileUrl;
String title;
String memberTitle;
String body;
String createdAt;
Boolean isOwn;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public PostDTO viewPost(Long postId) {
.memberId(comments.getMember().getId())
.nickname(comments.getMember().getNickname())
.profileUrl(comments.getMember().getUserImg())
.title(comments.getMember().getUserTitle())
.memberTitle(comments.getMember().getUserTitle())
.body(comments.getBody())
.createdAt(formatCreatedAt2(comments.getCreatedAt()))
.isOwn(comments.getMember().getId().equals(currentMemberId))
Expand Down

0 comments on commit c364740

Please sign in to comment.