qa: New field to save exported state of qa
This commit is contained in:
parent
563cf14adc
commit
334512ef0d
3 changed files with 14 additions and 11 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Reference in a new issue