Skip to content
Merged
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 @@ -82,9 +82,10 @@ public void validateAnalysisStatusIsNotDone() {

public void updateRetrospect(String title, String introduction, LocalDateTime deadline, Time time) {

if (deadline != null && deadline.isBefore(time.now())) {
throw new RetrospectException(INVALID_DEADLINE);
}
// 회고가 마감되더라도, 회고 자체를 수정할 수 있다.
// if (deadline != null && deadline.isBefore(time.now())) {
// throw new RetrospectException(INVALID_DEADLINE);
// }

this.title = title;
this.introduction = introduction;
Expand Down
Loading