mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
* feat(settings): add the capability to enable/disable the host management features * feat(settings): remove the validation of EnableHostManagementFeatures in frontend * feat(api): disable schedules API when HostManagementFeatures is false + DB migration * style(settings): update host management settings tooltip * refacot(schedules): update DBVersion to 15
19 lines
449 B
JavaScript
19 lines
449 B
JavaScript
angular.module('portainer.docker').component('hostOverview', {
|
|
templateUrl: 'app/docker/components/host-overview/host-overview.html',
|
|
bindings: {
|
|
hostDetails: '<',
|
|
engineDetails: '<',
|
|
devices: '<',
|
|
disks: '<',
|
|
isAgent: '<',
|
|
offlineMode: '<',
|
|
agentApiVersion: '<',
|
|
refreshUrl: '@',
|
|
browseUrl: '@',
|
|
jobUrl: '@',
|
|
isJobEnabled: '<',
|
|
hostFeaturesEnabled: '<',
|
|
jobs: '<'
|
|
},
|
|
transclude: true
|
|
});
|