Skip to content
Snippets Groups Projects
Commit a174aff7 authored by Tom Käsler's avatar Tom Käsler
Browse files

Merge branch 'exportToClick' into 'master'

add property to enable export to click



See merge request !31
parents e44758f1 a012fd56
No related merge requests found
......@@ -96,6 +96,9 @@ public class ConfigurationController extends AbstractController {
@Value("${features.public-pool.enabled:false}")
private String publicPoolEnabled;
@Value("${features.export-to-click.enabled:false}")
private String exportToClickEnabled;
@Value("${question.answer-option-limit:8}")
private String answerOptionLimit;
......@@ -231,6 +234,7 @@ public class ConfigurationController extends AbstractController {
features.put("gridSquare", "true".equals(gridSquareEnabled));
features.put("sessionImportExport", "true".equals(sessionImportExportEnabled));
features.put("publicPool", "true".equals(publicPoolEnabled));
features.put("exportToClick", "true".equals(exportToClickEnabled));
// add public pool configuration on demand
if (features.get("publicPool")) {
......
......@@ -210,7 +210,7 @@ features.question-format.grid-square.enabled=true
#
features.session-import-export.enabled=true
features.public-pool.enabled=true
features.export-to-click.enabled=true
################################################################################
# Customization
......
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