mirror of https://github.com/portainer/portainer
feat(engine-details): replace host-view with host-overview
parent
f1f798b7eb
commit
47f49b1e5d
|
@ -1,6 +1,6 @@
|
|||
angular.module('portainer.docker')
|
||||
.controller('HostController', ['$q', '$scope', 'SystemService', 'Notifications',
|
||||
function ($q, $scope, SystemService, Notifications) {
|
||||
.controller('HostOverviewController', ['$q', '$scope', 'SystemService', 'Notifications',
|
||||
function HostOverviewController($q, $scope, SystemService, Notifications) {
|
||||
|
||||
function initView() {
|
||||
$q.all({
|
|
@ -0,0 +1,10 @@
|
|||
angular.module('portainer.docker').component('hostOverview', {
|
||||
templateUrl: 'app/docker/components/host-overview/host-overview.html',
|
||||
controller: 'HostOverviewController',
|
||||
bindings: {
|
||||
hostDetails: '<',
|
||||
engineDetails: '<',
|
||||
nodeDetails: '<',
|
||||
isSwarm: '<'
|
||||
}
|
||||
});
|
|
@ -1,4 +0,0 @@
|
|||
angular.module('portainer.docker').component('hostView', {
|
||||
templateUrl: 'app/docker/views/host/host.html',
|
||||
controller: 'HostController'
|
||||
});
|
Loading…
Reference in New Issue