mirror of https://github.com/portainer/portainer
20 lines
509 B
JavaScript
20 lines
509 B
JavaScript
angular.module('portainer.docker')
|
|
.controller('EventsController', ['$scope', 'Notifications', 'SystemService',
|
|
function ($scope, Notifications, SystemService) {
|
|
|
|
function initView() {
|
|
var from = moment().subtract(24, 'hour').unix();
|
|
var to = moment().unix();
|
|
|
|
SystemService.events(from, to)
|
|
.then(function success(data) {
|
|
$scope.events = data;
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to load events');
|
|
});
|
|
}
|
|
|
|
initView();
|
|
}]);
|