|
@@ -71,6 +71,10 @@ Boards.attachSchema(new SimpleSchema({
|
|
'midnight',
|
|
'midnight',
|
|
],
|
|
],
|
|
},
|
|
},
|
|
|
|
+ description: {
|
|
|
|
+ type: String,
|
|
|
|
+ optional: true,
|
|
|
|
+ },
|
|
}));
|
|
}));
|
|
|
|
|
|
|
|
|
|
@@ -141,6 +145,10 @@ Boards.mutations({
|
|
return { $set: { title }};
|
|
return { $set: { title }};
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ setDesciption(description) {
|
|
|
|
+ return { $set: {description} };
|
|
|
|
+ },
|
|
|
|
+
|
|
setColor(color) {
|
|
setColor(color) {
|
|
return { $set: { color }};
|
|
return { $set: { color }};
|
|
},
|
|
},
|