mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
- Fix: IFTTT Rule "Remove all members from the card" doesn't work.
Thanks to BurakTuran9 ! Related #1972
This commit is contained in:
parent
83f7fa768d
commit
d6e36ed50a
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ RulesHelper = {
|
|||
card.assignMember(memberId);
|
||||
}
|
||||
if(action.actionType === 'removeMember'){
|
||||
if(action.memberName === '*'){
|
||||
if(action.username === '*'){
|
||||
const members = card.members;
|
||||
for(let i = 0; i< members.length; i++){
|
||||
card.unassignMember(members[i]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue