diff --git a/src/main/java/de/thm/arsnova/controller/ConfigurationController.java b/src/main/java/de/thm/arsnova/controller/ConfigurationController.java index eebf99f8c95d5d59a08bdafaa9a46f3dc2f275c2..610dc2e3b0a42c8f8ca68bf3f01567eb990cb391 100644 --- a/src/main/java/de/thm/arsnova/controller/ConfigurationController.java +++ b/src/main/java/de/thm/arsnova/controller/ConfigurationController.java @@ -82,9 +82,6 @@ public class ConfigurationController extends AbstractController { @Value("${features.mathjax.src:}") private String mathJaxSrc; - @Value("${features.students-own-questions.enabled:false}") - private String studentsOwnQuestions; - @Value("${features.freetext-imageanswer.enabled:false}") private String imageAnswerEnabled; @@ -223,7 +220,6 @@ public class ConfigurationController extends AbstractController { features.put("mathJax", "true".equals(mathJaxEnabled)); /* Keep the markdown property for now since the frontend still depends on it */ features.put("markdown", true); - features.put("studentsOwnQuestions", "true".equals(studentsOwnQuestions)); features.put("imageAnswer", "true".equals(imageAnswerEnabled)); features.put("gridSquare", "true".equals(gridSquareEnabled)); features.put("sessionImportExport", "true".equals(sessionImportExportEnabled)); diff --git a/src/main/resources/arsnova.properties.example b/src/main/resources/arsnova.properties.example index 2dc5421a5070a2e4b2086e1f4a4533021f097e64..b81d3369d0c51d9160b23fffccba1e9b21882ee6 100644 --- a/src/main/resources/arsnova.properties.example +++ b/src/main/resources/arsnova.properties.example @@ -181,7 +181,6 @@ features.mathjax.src=//cdn.mathjax.org/mathjax/2.4-latest/MathJax.js # tested in a production environment over a longer time frame and/or their # behavior will change in future releases. # -features.students-own-questions.enabled=true features.freetext-imageanswer.enabled=true features.question-format.grid-square.enabled=true diff --git a/src/test/resources/arsnova.properties.example b/src/test/resources/arsnova.properties.example index 2dc5421a5070a2e4b2086e1f4a4533021f097e64..b81d3369d0c51d9160b23fffccba1e9b21882ee6 100644 --- a/src/test/resources/arsnova.properties.example +++ b/src/test/resources/arsnova.properties.example @@ -181,7 +181,6 @@ features.mathjax.src=//cdn.mathjax.org/mathjax/2.4-latest/MathJax.js # tested in a production environment over a longer time frame and/or their # behavior will change in future releases. # -features.students-own-questions.enabled=true features.freetext-imageanswer.enabled=true features.question-format.grid-square.enabled=true