Initial Logs controller
This commit is contained in:
parent
87e1133506
commit
904b946bfb
|
@ -17,6 +17,12 @@ ZoneMinder.controller('FooterController', function($scope, Footer) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ZoneMinder.controller('LogController', function($scope, Log) {
|
||||||
|
Log.getLogs(function(results) {
|
||||||
|
$scope.logs = results.logs;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
ZoneMinder.controller('EventController', function($scope, $location, Event) {
|
ZoneMinder.controller('EventController', function($scope, $location, Event) {
|
||||||
|
|
||||||
var eventId = $location.search().eid;
|
var eventId = $location.search().eid;
|
||||||
|
|
Loading…
Reference in New Issue