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