Skip to content

Commit

Permalink
Fix: QuestionPaper 상세 조회 DTO 빌더에 finishDateTIme이 누락되어 있던 문제 수정
Browse files Browse the repository at this point in the history
[#49]
  • Loading branch information
MuseopKim committed Jun 28, 2021
1 parent 955d737 commit d190707
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public static AdminQuestionPaperDetail from(QuestionPaper questionPaper) {
.title(questionPaper.getTitle())
.startDateTime(questionPaper.getStartDateTime())
.endDateTime(questionPaper.getEndDateTime())
.finishDateTime(questionPaper.getFinishDateTime())
.opened(questionPaper.getOpened())
.build();
}
Expand Down

0 comments on commit d190707

Please sign in to comment.