diff options
author | amadilsons <joao.amado.95@gmail.com> | 2017-09-28 16:59:53 +0200 |
---|---|---|
committer | amadilsons <joao.amado.95@gmail.com> | 2017-09-28 16:59:53 +0200 |
commit | c9c650664fd92f0924afb4548a50c7bca167d955 (patch) | |
tree | 304125a6c8eae4494af0847577dccd2eddd2b0bf /models/lists.js | |
parent | eb945f26a3be316fb2ae4452d6db45a11f8b91d4 (diff) | |
download | wekan-c9c650664fd92f0924afb4548a50c7bca167d955.tar.gz wekan-c9c650664fd92f0924afb4548a50c7bca167d955.tar.bz2 wekan-c9c650664fd92f0924afb4548a50c7bca167d955.zip |
basic frontend setup, List model updated with wipLimit field
Diffstat (limited to 'models/lists.js')
-rw-r--r-- | models/lists.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/models/lists.js b/models/lists.js index d9a5b8e2..80accefb 100644 --- a/models/lists.js +++ b/models/lists.js @@ -42,6 +42,11 @@ Lists.attachSchema(new SimpleSchema({ } }, }, + + wipLimit: { + type: SimpleSchema.Integer, + optional: true, + }, })); Lists.allow({ |