UNPKG

ah-dashboard-plugin

Version:

Plugin for an ActionHero Dashboard with many functionalities

9 lines 323 B
define(['app'], function (app) { app.controller('ahDashboardRoutes', function ($scope, ahDashboardCommunicationService) { ahDashboardCommunicationService.action('getRoutes', function(err, data){ $scope.routes = data.routes; $scope.routesLoadingDone = true; $scope.$apply(); }); }); });