Add filter bar for event log view

This commit is contained in:
Johannes Zellner
2016-05-06 17:18:47 +02:00
parent 4c7dc5056d
commit 54c9bb7409
4 changed files with 57 additions and 11 deletions

View File

@@ -380,9 +380,11 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
}).error(defaultErrorHandler(callback));
};
Client.prototype.getEventLogs = function (page, perPage, callback) {
Client.prototype.getEventLogs = function (action, search, page, perPage, callback) {
var config = {
params: {
action: action,
search: search,
page: page,
per_page: perPage
}