Add new setting when creating survey

This commit is contained in:
Pierre HUBERT 2020-05-17 18:12:02 +02:00
parent 1ccb3eb36d
commit 9777a2a370

View File

@ -275,6 +275,14 @@ ComunicWeb.components.posts.form = {
multiple: true, multiple: true,
}); });
// Specify whether anyone can add suggestions to the survey or not
const allowNewChoicesInput = createFormGroup({
target: surveyForm,
type: "checkbox",
label: tr("Allow everyone to add new answers after the creation of the survey"),
checked: false
});
//Survey message help //Survey message help
var surveyAnswerHelper = createElem2({ var surveyAnswerHelper = createElem2({
appendTo: surveyForm, appendTo: surveyForm,
@ -536,6 +544,7 @@ ComunicWeb.components.posts.form = {
datas.append("kind", "survey"); datas.append("kind", "survey");
datas.append("question", surveyQuestionInput.value); datas.append("question", surveyQuestionInput.value);
datas.append("answers", answers.join("<>")); datas.append("answers", answers.join("<>"));
datas.append("allowNewAnswers", allowNewChoicesInput.checked);
} }