Skip to content

Commit

Permalink
MATE-121 : [FEAT] 굿즈 채팅방 반환값에 sellerId 추가 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
MisaSohee authored Dec 9, 2024
1 parent d442bc5 commit 585c692
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class GoodsChatRoomResponse {
private final String postStatus;
private final String chatRoomStatus;
private final String imageUrl;
private final Long goodsSellerId;

private final PageResponse<GoodsChatMessageResponse> initialMessages;

Expand All @@ -41,6 +42,7 @@ public static GoodsChatRoomResponse of(GoodsChatRoom chatRoom, PageResponse<Good
.postStatus(goodsPost.getStatus().getValue())
.chatRoomStatus(chatRoom.getIsActive().toString())
.initialMessages(initialMessages)
.goodsSellerId(goodsPost.getSeller().getId())
.build();
}

Expand Down

0 comments on commit 585c692

Please sign in to comment.