Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
@AllArgsConstructor
public class NoticeSummary {

private Long boardId;

private Long postId;

private String title;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public ReadHomeResult readHome(Long spaceMemberId, Long spaceId) {

for (Post post : noticePosts) {
notices.add(new NoticeSummary(
post.getBoardId(),
post.getId(),
post.getTitle(),
ConvertCreatedDate.setCreatedDate(post.getBaseInfo().getCreatedAt())
Expand Down
Loading