mirror of https://github.com/portainer/portainer
17 lines
362 B
JavaScript
17 lines
362 B
JavaScript
angular.module('portainer.docker').component('hostOverview', {
|
|
templateUrl: './host-overview.html',
|
|
bindings: {
|
|
hostDetails: '<',
|
|
engineDetails: '<',
|
|
devices: '<',
|
|
disks: '<',
|
|
isAgent: '<',
|
|
offlineMode: '<',
|
|
agentApiVersion: '<',
|
|
refreshUrl: '@',
|
|
browseUrl: '@',
|
|
hostFeaturesEnabled: '<',
|
|
},
|
|
transclude: true,
|
|
});
|