Add two way binding of card/board times

This commit is contained in:
Andrés Manelli 2018-04-17 23:17:44 -03:00
parent 0a62089df0
commit 724d26379c
7 changed files with 250 additions and 52 deletions

View file

@ -177,6 +177,28 @@ Boards.attachSchema(new SimpleSchema({
optional: true,
defaultValue: 'no-parent',
},
startAt: {
type: Date,
optional: true,
},
dueAt: {
type: Date,
optional: true,
},
endAt: {
type: Date,
optional: true,
},
spentTime: {
type: Number,
decimal: true,
optional: true,
},
isOvertime: {
type: Boolean,
defaultValue: false,
optional: true,
},
}));