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/users.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/users.js')
-rw-r--r-- | models/users.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/users.js b/models/users.js index 1493aa0d..87f2b860 100644 --- a/models/users.js +++ b/models/users.js @@ -739,7 +739,7 @@ if (Meteor.isServer) { }); Boards.insert({ - title: TAPi18n.__('templates-board'), + title: TAPi18n.__('templates'), permission: 'private', type: 'template-container' }, fakeUser, (err, boardId) => { |