mirror of
https://github.com/wekan/wekan.git
synced 2026-01-25 18:56:10 +01:00
Completed rules
This commit is contained in:
parent
3b62b5ec5d
commit
1f5f429fc4
21 changed files with 551 additions and 157 deletions
|
|
@ -44,6 +44,12 @@ ChecklistItems.mutations({
|
|||
setTitle(title) {
|
||||
return { $set: { title } };
|
||||
},
|
||||
check(){
|
||||
return { $set: { isFinished: true } };
|
||||
},
|
||||
uncheck(){
|
||||
return { $set: { isFinished: false } };
|
||||
},
|
||||
toggleItem() {
|
||||
return { $set: { isFinished: !this.isFinished } };
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue