diff options
author | RJevnikar <12701645+rjevnikar@users.noreply.github.com> | 2018-03-26 19:04:02 +0000 |
---|---|---|
committer | RJevnikar <12701645+rjevnikar@users.noreply.github.com> | 2018-03-26 20:51:24 +0000 |
commit | 07217d0e5142028bbe794bdd3611e47890ab4bfb (patch) | |
tree | df4747598115c2daf6813d004bcd48a7446a48ad /models/checklists.js | |
parent | 80941e57d39138338761311964dc32ad25fd34ad (diff) | |
download | wekan-07217d0e5142028bbe794bdd3611e47890ab4bfb.tar.gz wekan-07217d0e5142028bbe794bdd3611e47890ab4bfb.tar.bz2 wekan-07217d0e5142028bbe794bdd3611e47890ab4bfb.zip |
Add additional dates (received & end), default title of checklists to 'Checklist'
Remove translations
Add additional dates (received & end), default name checklists to Checklist
Diffstat (limited to 'models/checklists.js')
-rw-r--r-- | models/checklists.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/models/checklists.js b/models/checklists.js index 637e280c..9946f98e 100644 --- a/models/checklists.js +++ b/models/checklists.js @@ -6,6 +6,7 @@ Checklists.attachSchema(new SimpleSchema({ }, title: { type: String, + defaultValue: 'Checklist', }, finishedAt: { type: Date, |