feat: Add ability to hide completed tasks (#1210)

This commit is contained in:
Symon Baikov
2025-07-21 19:33:02 +03:00
committed by GitHub
parent fc9c94b3b6
commit d8fbf2f909
17 changed files with 158 additions and 55 deletions

View File

@@ -16,6 +16,7 @@ export default class extends BaseModel {
position: attr(),
name: attr(),
showOnFrontOfCard: attr(),
hideCompletedTasks: attr(),
cardId: fk({
to: 'Card',
as: 'card',
@@ -111,6 +112,7 @@ export default class extends BaseModel {
position: this.position,
name: this.name,
showOnFrontOfCard: this.showOnFrontOfCard,
hideCompletedTasks: this.hideCompletedTasks,
...data,
});