mirror of
https://github.com/wekan/wekan.git
synced 2026-02-09 09:44:22 +01:00
Revert to Wekan v3.57 version of client and models directories,
removing Worker role temporarily, because Worker role changes broke saving card. Thanks to xet7 !
This commit is contained in:
parent
9b28847592
commit
27943796ad
28 changed files with 250 additions and 629 deletions
|
|
@ -67,8 +67,7 @@ BlazeComponent.extendComponent({
|
|||
return (
|
||||
Meteor.user() &&
|
||||
Meteor.user().isBoardMember() &&
|
||||
!Meteor.user().isCommentOnly() &&
|
||||
!Meteor.user().isWorker()
|
||||
!Meteor.user().isCommentOnly()
|
||||
);
|
||||
},
|
||||
}).register('checklistDetail');
|
||||
|
|
@ -121,8 +120,7 @@ BlazeComponent.extendComponent({
|
|||
return (
|
||||
Meteor.user() &&
|
||||
Meteor.user().isBoardMember() &&
|
||||
!Meteor.user().isCommentOnly() &&
|
||||
!Meteor.user().isWorker()
|
||||
!Meteor.user().isCommentOnly()
|
||||
);
|
||||
},
|
||||
|
||||
|
|
@ -230,8 +228,7 @@ Template.checklistItemDetail.helpers({
|
|||
return (
|
||||
Meteor.user() &&
|
||||
Meteor.user().isBoardMember() &&
|
||||
!Meteor.user().isCommentOnly() &&
|
||||
!Meteor.user().isWorker()
|
||||
!Meteor.user().isCommentOnly()
|
||||
);
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue