Skip to content
Snippets Groups Projects
Commit 8408cc86 authored by Christoph Thelen's avatar Christoph Thelen
Browse files

Merge branch 'master' into question-based-progress

parents 3cb9fa6f 4590d8b0
Branches
Tags
No related merge requests found
......@@ -102,6 +102,9 @@ public class ConfigurationController extends AbstractController {
@Value("${question.answer-option-limit:8}")
private String answerOptionLimit;
@Value("${upload.filesize_b:}")
private String maxUploadFilesize;
@Value("${question.parse-answer-option-formatting:false}")
private String parseAnswerOptionFormatting;
......@@ -183,6 +186,9 @@ public class ConfigurationController extends AbstractController {
if (!"".equals(demoSessionKey)) {
config.put("demoSessionKey", demoSessionKey);
}
if (!"".equals(maxUploadFilesize)) {
config.put("maxUploadFilesize", maxUploadFilesize);
}
config.put("answerOptionLimit", Integer.valueOf(answerOptionLimit));
config.put("parseAnswerOptionFormatting", Boolean.valueOf(parseAnswerOptionFormatting));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment