mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 09:15:01 +03:00
feat: Add ability to hide completed tasks (#1210)
This commit is contained in:
@@ -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,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user