From: David Knoll Date: Tue, 30 Sep 2014 15:50:41 +0000 (+0100) Subject: Added rowCount to disable default API limit of 25 in listing existing AB tests X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=349b6fac724dede05f26ac387f5d215b5d0f79c2;p=civicrm-core.git Added rowCount to disable default API limit of 25 in listing existing AB tests --- diff --git a/js/angular-crmMailingAB.js b/js/angular-crmMailingAB.js index de685ebd03..8d5e6a87c0 100755 --- a/js/angular-crmMailingAB.js +++ b/js/angular-crmMailingAB.js @@ -21,7 +21,7 @@ controller: 'ABListingCtrl', resolve: { mailingABList: function ($route, crmApi) { - return crmApi('MailingAB', 'get', {}); + return crmApi('MailingAB', 'get', {rowCount: 0}); } } });