mirror of
https://github.com/wekan/wekan.git
synced 2026-01-22 01:06:09 +01:00
add: optional board description
This commit is contained in:
parent
011f53ad08
commit
21fa6fdc32
5 changed files with 15 additions and 0 deletions
|
|
@ -71,6 +71,10 @@ Boards.attachSchema(new SimpleSchema({
|
|||
'midnight',
|
||||
],
|
||||
},
|
||||
description: {
|
||||
type: String,
|
||||
optional: true,
|
||||
},
|
||||
}));
|
||||
|
||||
|
||||
|
|
@ -141,6 +145,10 @@ Boards.mutations({
|
|||
return { $set: { title }};
|
||||
},
|
||||
|
||||
setDesciption(description) {
|
||||
return { $set: {description} };
|
||||
},
|
||||
|
||||
setColor(color) {
|
||||
return { $set: { color }};
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue