mirror of
https://github.com/wekan/wekan.git
synced 2026-01-02 23:58:49 +01:00
Add two way binding of card/board times
This commit is contained in:
parent
0a62089df0
commit
724d26379c
7 changed files with 250 additions and 52 deletions
|
|
@ -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,
|
||||
},
|
||||
}));
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue