Skip to content

Commit ca298f7

Browse files
committed
급하게 컴플리트 추가
1 parent 1a7fa89 commit ca298f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sms-core/src/main/kotlin/team/msg/sms/domain/authentication/usecase/GradingAuthenticationFormUseCase.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package team.msg.sms.domain.authentication.usecase
33
import team.msg.sms.common.annotation.UseCase
44
import team.msg.sms.domain.authentication.dto.req.GradingRequestData
55
import team.msg.sms.domain.authentication.exception.UserFormValueNotFoundException
6+
import team.msg.sms.domain.authentication.model.MarkingBoardType
67
import team.msg.sms.domain.authentication.model.MarkingType
78
import team.msg.sms.domain.authentication.model.MarkingValue
89
import team.msg.sms.domain.authentication.service.MarkingBoardService
@@ -53,7 +54,8 @@ class GradingAuthenticationFormUseCase(
5354
markingBoardService.getMarkingBoardById(markingBoardId).let { markingBoard ->
5455
markingBoardService.save(
5556
markingBoard.copy(
56-
totalScore = totalScore
57+
totalScore = totalScore,
58+
markingBoardType = MarkingBoardType.COMPLETED
5759
)
5860
)
5961
}

0 commit comments

Comments
 (0)