feat: Persist closed state per card

This commit is contained in:
Maksim Eltyshev
2025-07-09 17:45:47 +02:00
parent 69c75a03b1
commit 709a0d1758
19 changed files with 163 additions and 71 deletions
+2
View File
@@ -20,6 +20,7 @@ export default class extends BaseModel {
description: attr(),
dueDate: attr(),
stopwatch: attr(),
isClosed: attr(),
commentsTotal: attr({
getDefault: () => 0,
}),
@@ -554,6 +555,7 @@ export default class extends BaseModel {
description: this.description,
dueDate: this.dueDate,
stopwatch: this.stopwatch,
isClosed: this.isClosed,
...data,
});