diff options
author | Andrés Manelli <andresmanelli@gmail.com> | 2018-04-17 23:17:44 -0300 |
---|---|---|
committer | Andrés Manelli <andresmanelli@gmail.com> | 2018-08-11 00:07:29 +0200 |
commit | 724d26379c33afc2c3d44d3722b0c5c35c1b80ed (patch) | |
tree | 7678c5b0769bda94ea2237451989e8c7ece3f637 /models/boards.js | |
parent | 0a62089df02b2ab308d4749a837e08c4164cb770 (diff) | |
download | wekan-724d26379c33afc2c3d44d3722b0c5c35c1b80ed.tar.gz wekan-724d26379c33afc2c3d44d3722b0c5c35c1b80ed.tar.bz2 wekan-724d26379c33afc2c3d44d3722b0c5c35c1b80ed.zip |
Add two way binding of card/board times
Diffstat (limited to 'models/boards.js')
-rw-r--r-- | models/boards.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/models/boards.js b/models/boards.js index d5ccc954..a37981e0 100644 --- a/models/boards.js +++ b/models/boards.js @@ -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, + }, })); |