ah-dashboard-plugin
Version:
Plugin for an ActionHero Dashboard with many functionalities
9 lines • 354 B
JavaScript
define(['app'], function (app) {
app.controller('ahDashboardArchitecture', function ($scope, ahDashboardCommunicationService) {
ahDashboardCommunicationService.action('getRedisInfos', function (err, data) {
$scope.redisSentinels = data.sentinelServers;
$scope.redisData = data.redisInfo;
$scope.$apply();
});
});
});