Add search param

This commit is contained in:
Girish Ramakrishnan
2020-02-14 09:09:32 -08:00
parent aba233c74a
commit 84310336bd

View File

@@ -1974,11 +1974,12 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
};
// Email
Client.prototype.getMailEventLogs = function (page, perPage, callback) {
Client.prototype.getMailEventLogs = function (search, page, perPage, callback) {
var config = {
params: {
page: page,
per_page: perPage
per_page: perPage,
search: search
}
};