diff options
author | Andrés Manelli <andresmanelli@gmail.com> | 2019-02-23 12:14:37 +0100 |
---|---|---|
committer | Andrés Manelli <andresmanelli@gmail.com> | 2019-02-24 00:05:00 +0100 |
commit | 1e72177991e3fe11a1837e3e294e4de5d728aa30 (patch) | |
tree | e0d8e2fb100bae88f2f9b83d7c79362fe9d431ad /models/swimlanes.js | |
parent | cdf070189e11205eecd11641226ae62964cc03e1 (diff) | |
download | wekan-1e72177991e3fe11a1837e3e294e4de5d728aa30.tar.gz wekan-1e72177991e3fe11a1837e3e294e4de5d728aa30.tar.bz2 wekan-1e72177991e3fe11a1837e3e294e4de5d728aa30.zip |
Avoid links on a template-board
Allow creation of template boards with a linked card
Avoid changing the name of the template-container swimlanes
Diffstat (limited to 'models/swimlanes.js')
-rw-r--r-- | models/swimlanes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/swimlanes.js b/models/swimlanes.js index 9d4e16de..be3f617c 100644 --- a/models/swimlanes.js +++ b/models/swimlanes.js @@ -149,7 +149,7 @@ Swimlanes.helpers({ isBoardTemplatesSwimlane() { const user = Users.findOne(Meteor.userId()); - return user.profile.boardsTemplatesSwimlaneId === this._id; + return user.profile.boardTemplatesSwimlaneId === this._id; }, }); |