SEBSERV-555 use "0" for no template selection

This commit is contained in:
anhefti 2024-07-01 13:40:51 +02:00
parent ee89d2a24e
commit 900bbfe5f4

View file

@ -570,7 +570,7 @@ public class FullLmsIntegrationServiceImpl implements FullLmsIntegrationService
? null
: exam.examTemplateId != null
? String.valueOf(exam.examTemplateId)
: null;
: "0";
final String quitPassword = deletion ? null : examConfigurationValueService.getQuitPassword(exam.id);
final String quitLink = deletion ? null : examConfigurationValueService.getQuitLink(exam.id);