Commit fa1c739b authored by Patricio Bruna's avatar Patricio Bruna

Now dl.members() works even from getAllDistributionList()

parent ea26237e
...@@ -14211,6 +14211,10 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -14211,6 +14211,10 @@ return /******/ (function(modules) { // webpackBootstrap
obj.dlm.forEach(function (m) { obj.dlm.forEach(function (m) {
members.push(m._content); members.push(m._content);
}); });
} else if (this.attrs.zimbraMailForwardingAddress) {
this.attrs.zimbraMailForwardingAddress.forEach(function (m) {
members.push(m);
});
} }
return members; return members;
} }
This diff is collapsed.
...@@ -39,6 +39,10 @@ export default class DistributionList extends Zimbra { ...@@ -39,6 +39,10 @@ export default class DistributionList extends Zimbra {
obj.dlm.forEach((m) => { obj.dlm.forEach((m) => {
members.push(m._content); members.push(m._content);
}); });
} else if (this.attrs.zimbraMailForwardingAddress) {
this.attrs.zimbraMailForwardingAddress.forEach((m) => {
members.push(m);
});
} }
return members; return members;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment