mirror of
https://github.com/wekan/wekan.git
synced 2026-03-12 00:22:34 +01:00
Avoid links on a template-board
Allow creation of template boards with a linked card Avoid changing the name of the template-container swimlanes
This commit is contained in:
parent
cdf070189e
commit
1e72177991
7 changed files with 54 additions and 30 deletions
|
|
@ -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;
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -739,7 +739,7 @@ if (Meteor.isServer) {
|
|||
});
|
||||
|
||||
Boards.insert({
|
||||
title: TAPi18n.__('templates-board'),
|
||||
title: TAPi18n.__('templates'),
|
||||
permission: 'private',
|
||||
type: 'template-container'
|
||||
}, fakeUser, (err, boardId) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue