1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

feat(aci): provide container details page (#4037)

* feat(aci): show basic details

* feat(aci): style container details page

* fix(aci): fix container ip

* feat(aci): provide functions to get single aci resource

* feat(aci): show readable data

* feat(aci): style container instance
This commit is contained in:
Chaim Lev-Ari 2020-07-21 00:08:20 +03:00 committed by GitHub
parent 4b97cf738e
commit 53cddeb283
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 225 additions and 6 deletions

View file

@ -24,6 +24,12 @@ angular.module('portainer.azure').factory('SubscriptionService', [
return deferred.promise;
};
service.subscription = subscription;
async function subscription(id) {
const subscription = await Subscription.get({ id }).$promise;
return new SubscriptionViewModel(subscription);
}
return service;
},
]);