1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-21 21:09:22 +00:00

Can set new survey attribute

This commit is contained in:
Pierre HUBERT 2020-05-17 18:25:15 +02:00
parent 15b6315de8
commit c4a507e25c
3 changed files with 7 additions and 3 deletions

View File

@ -267,7 +267,8 @@ export class PostsController {
survey = new NewSurvey({
question: h.postString("question"),
userID: h.getUserId(),
choices: h.postString("answers").split("<>")
choices: h.postString("answers").split("<>"),
allowNewChoices: h.postBool("allowNewAnswers", false),
})
if(survey.choices.length < 2)

View File

@ -8,7 +8,8 @@ export interface NewSurveyBuilder {
postID?: number,
userID: number,
question: string,
choices: Array<string>
choices: Array<string>,
allowNewChoices: boolean
}
export class NewSurvey implements NewSurveyBuilder {
@ -16,6 +17,7 @@ export class NewSurvey implements NewSurveyBuilder {
userID: number;
question: string;
choices: string[];
allowNewChoices: boolean;
public constructor(info: NewSurveyBuilder) {
for (const key in info) {

View File

@ -42,7 +42,8 @@ export class SurveyHelper {
ID_utilisateurs: survey.userID,
ID_texte: survey.postID,
date_creation: mysql_date(),
question: survey.question
question: survey.question,
allow_new_choices: survey.allowNewChoices ? 1 : 0,
})
// Process choices