SEBSERV-306 fixed also for Exams
This commit is contained in:
parent
28c7706f70
commit
ab56ce3cc4
1 changed files with 3 additions and 1 deletions
|
@ -403,7 +403,9 @@ public class ExamAdministrationController extends EntityController<Exam, Exam> {
|
||||||
.byPK(examId)
|
.byPK(examId)
|
||||||
.flatMap(this.authorization::checkModify)
|
.flatMap(this.authorization::checkModify)
|
||||||
.map(exam -> {
|
.map(exam -> {
|
||||||
this.examAdminService.saveProctoringServiceSettings(examId, proctoringServiceSettings);
|
this.examAdminService
|
||||||
|
.saveProctoringServiceSettings(examId, proctoringServiceSettings)
|
||||||
|
.getOrThrow();
|
||||||
return exam;
|
return exam;
|
||||||
})
|
})
|
||||||
.flatMap(this.userActivityLogDAO::logModify)
|
.flatMap(this.userActivityLogDAO::logModify)
|
||||||
|
|
Loading…
Reference in a new issue