Skip to content

Commit

Permalink
hotfix: 회고 생성 오류 해결
Browse files Browse the repository at this point in the history
hotfix: 회고 생성 오류 해결
  • Loading branch information
mikekks committed Sep 11, 2024
2 parents 8d2a2aa + 42b1a01 commit cc27367
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ private Retrospect getRetrospect(RetrospectCreateRequest request, Long spaceId)
.title(request.title())
.introduction(request.introduction())
.retrospectStatus(RetrospectStatus.PROCEEDING)
.analysisStatus(AnalysisStatus.NOT_STARTED)
.deadline(request.deadline())
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class Retrospect extends BaseTimeEntity {

@Builder
public Retrospect(Long spaceId, String title, String introduction, RetrospectStatus retrospectStatus,
AnalysisStatus analysisStatus, LocalDateTime deadline, int capacity) {
AnalysisStatus analysisStatus, LocalDateTime deadline) {
this.spaceId = spaceId;
this.title = title;
this.introduction = introduction;
Expand Down

0 comments on commit cc27367

Please sign in to comment.