SEBSERV-417 testing
This commit is contained in:
parent
bcb28b0945
commit
a8185095f2
1 changed files with 3 additions and 1 deletions
|
@ -151,8 +151,10 @@ public class FullLmsIntegrationServiceImpl implements FullLmsIntegrationService
|
||||||
return Result.tryCatch(() -> {
|
return Result.tryCatch(() -> {
|
||||||
final LmsSetup lmsSetup = lmsSetupDAO.byPK(exam.lmsSetupId).getOrThrow();
|
final LmsSetup lmsSetup = lmsSetupDAO.byPK(exam.lmsSetupId).getOrThrow();
|
||||||
if (lmsSetup.lmsType.features.contains(LmsSetup.Features.LMS_FULL_INTEGRATION)) {
|
if (lmsSetup.lmsType.features.contains(LmsSetup.Features.LMS_FULL_INTEGRATION)) {
|
||||||
this.applyExamData(exam, !exam.active);
|
log.info("******************* applyConnectionConfiguration: {}", exam);
|
||||||
this.applyConnectionConfiguration(exam);
|
this.applyConnectionConfiguration(exam);
|
||||||
|
log.info("******************* applyExamData: {}", exam);
|
||||||
|
this.applyExamData(exam, !exam.active);
|
||||||
}
|
}
|
||||||
|
|
||||||
return exam;
|
return exam;
|
||||||
|
|
Loading…
Reference in a new issue