File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
sms-core/src/main/kotlin/team/msg/sms/domain/authentication/usecase Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package team.msg.sms.domain.authentication.usecase
3
3
import team.msg.sms.common.annotation.UseCase
4
4
import team.msg.sms.domain.authentication.dto.req.GradingRequestData
5
5
import team.msg.sms.domain.authentication.exception.UserFormValueNotFoundException
6
+ import team.msg.sms.domain.authentication.model.MarkingBoardType
6
7
import team.msg.sms.domain.authentication.model.MarkingType
7
8
import team.msg.sms.domain.authentication.model.MarkingValue
8
9
import team.msg.sms.domain.authentication.service.MarkingBoardService
@@ -53,7 +54,8 @@ class GradingAuthenticationFormUseCase(
53
54
markingBoardService.getMarkingBoardById(markingBoardId).let { markingBoard ->
54
55
markingBoardService.save(
55
56
markingBoard.copy(
56
- totalScore = totalScore
57
+ totalScore = totalScore,
58
+ markingBoardType = MarkingBoardType .COMPLETED
57
59
)
58
60
)
59
61
}
You can’t perform that action at this time.
0 commit comments