qa: New field to save exported state of qa

This commit is contained in:
nemunaire 2023-11-26 12:15:51 +01:00
commit 334512ef0d
3 changed files with 14 additions and 11 deletions

View file

@ -20,7 +20,7 @@ export class QAQuery {
}
}
update({ id, id_exercice, id_team, user, creation, state, subject, solved, closed }) {
update({ id, id_exercice, id_team, user, creation, state, subject, solved, closed, exported }) {
this.id = id;
this.id_team = id_team;
this.id_exercice = id_exercice;
@ -30,6 +30,7 @@ export class QAQuery {
this.subject = subject;
this.solved = solved;
this.closed = closed;
this.exported = exported;
}
async delete() {