mirror of https://github.com/portainer/portainer
22 lines
643 B
JavaScript
22 lines
643 B
JavaScript
|
angular.module('portainer.azure')
|
||
|
.controller('AzureDashboardController', ['$scope', 'AzureService', 'Notifications',
|
||
|
function ($scope, AzureService, Notifications) {
|
||
|
|
||
|
function initView() {
|
||
|
AzureService.subscriptions()
|
||
|
.then(function success(data) {
|
||
|
var subscriptions = data;
|
||
|
$scope.subscriptions = subscriptions;
|
||
|
return AzureService.resourceGroups(subscriptions);
|
||
|
})
|
||
|
.then(function success(data) {
|
||
|
$scope.resourceGroups = AzureService.aggregate(data);
|
||
|
})
|
||
|
.catch(function error(err) {
|
||
|
Notifications.error('Failure', err, 'Unable to load dashboard data');
|
||
|
});
|
||
|
}
|
||
|
|
||
|
initView();
|
||
|
}]);
|