email: add type filter to eventlog

This commit is contained in:
Girish Ramakrishnan
2020-03-25 20:13:45 -07:00
parent 3c858ca0fd
commit b5eac7c91b
5 changed files with 51 additions and 15 deletions

View File

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