Skip to content

Commit

Permalink
Merge pull request #20069 from larssandergreen/Remove-group-limit-for…
Browse files Browse the repository at this point in the history
…-mailings

Removed limit of 25 groups and past mailings
  • Loading branch information
eileenmcnaughton authored Apr 15, 2021
2 parents 364b9a9 + dd75b22 commit 7cbc1ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ang/crmMailing/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
},
// Call MailingGroup.get and merge results into "mailing"
_loadGroups: function (mailing) {
return crmApi('MailingGroup', 'get', {mailing_id: mailing.id})
return crmApi('MailingGroup', 'get', {mailing_id: mailing.id, 'options': {'limit':0}})
.then(function (groupResult) {
mailing.recipients = {};
mailing.recipients.groups = {include: [], exclude: [], base: []};
Expand Down

0 comments on commit 7cbc1ab

Please sign in to comment.