Skip to content

Commit

Permalink
fix: 잘못 기입된 응답값 수정 (#dev)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdkdhoho committed Nov 28, 2024
1 parent f0fe7f2 commit 9b9767e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public static NoticeFindAllResponseToAdmin of(Notice notice) {
.title(notice.getTitle().getValue())
.category(notice.getType().getViewName())
.description(notice.getDescription().getValue())
.isExposed(notice.isDidSendAlarm())
.isExposed(notice.isExposed())
.didSendAlarm(notice.isDidSendAlarm())
.build();
}
}

0 comments on commit 9b9767e

Please sign in to comment.