summaryrefslogtreecommitdiffstats
path: root/models/boards.js
diff options
context:
space:
mode:
authorAndrés Manelli <andresmanelli@gmail.com>2019-02-22 23:48:23 +0100
committerAndrés Manelli <andresmanelli@gmail.com>2019-02-24 00:05:00 +0100
commit64bf455b296a10369e8318183c2c6cd61a122869 (patch)
tree54b9612c3700cf711ef697217fd295fba7e4a9c1 /models/boards.js
parent0a53ee87b94232608b5131f47dd77d2fa4bbc5ba (diff)
downloadwekan-64bf455b296a10369e8318183c2c6cd61a122869.tar.gz
wekan-64bf455b296a10369e8318183c2c6cd61a122869.tar.bz2
wekan-64bf455b296a10369e8318183c2c6cd61a122869.zip
Save template swimlanes in profile. Fix swimlane view for templates board. Avoid deleting template containers
Diffstat (limited to 'models/boards.js')
-rw-r--r--models/boards.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/models/boards.js b/models/boards.js
index a2f4c0a8..7328899e 100644
--- a/models/boards.js
+++ b/models/boards.js
@@ -569,6 +569,10 @@ Boards.helpers({
isTemplateBoard() {
return this.type === 'template-board';
},
+
+ isTemplatesBoard() {
+ return this.type === 'template-container';
+ },
});