Skip to content

Commit

Permalink
fix : api response 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seokho-1116 committed Aug 14, 2024
1 parent 3a2252e commit 1c71987
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ public GroupMemberWithRelationResponse toResponse() {
.tag(tag)
.isOwner(isOwner)
.isFriend(isFriend)
.isFriendInviteToFriend(isFriendInviteToFriend)
.isFriendInviteToMe(isFriendInviteToMe)
.build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ public record GroupMemberWithRelationResponse(
Boolean isOwner,

@Schema(description = "친구 여부")
Boolean isFriend
Boolean isFriend,

@Schema(description = "친구한테 친구 요청 유무")
Boolean isFriendInviteToFriend,

@Schema(description = "친구로부터 친구 요청 유무")
Boolean isFriendInviteToMe
) {

}

0 comments on commit 1c71987

Please sign in to comment.