2018-10-08 01:44:08 +03:00
|
|
|
angular.module('portainer.docker').component('hostOverview', {
|
2019-03-21 07:46:49 +02:00
|
|
|
templateUrl: './host-overview.html',
|
2018-10-08 01:44:08 +03:00
|
|
|
bindings: {
|
|
|
|
hostDetails: '<',
|
|
|
|
engineDetails: '<',
|
|
|
|
devices: '<',
|
|
|
|
disks: '<',
|
|
|
|
isAgent: '<',
|
2018-10-28 10:27:06 +01:00
|
|
|
offlineMode: '<',
|
2018-10-26 06:16:29 +03:00
|
|
|
agentApiVersion: '<',
|
2018-10-12 01:32:17 +03:00
|
|
|
refreshUrl: '@',
|
2018-10-28 07:06:50 +01:00
|
|
|
browseUrl: '@',
|
|
|
|
jobUrl: '@',
|
|
|
|
isJobEnabled: '<',
|
2018-12-05 23:36:25 +01:00
|
|
|
hostFeaturesEnabled: '<',
|
2018-10-28 07:06:50 +01:00
|
|
|
jobs: '<'
|
2018-10-08 01:44:08 +03:00
|
|
|
},
|
|
|
|
transclude: true
|
|
|
|
});
|