mirror of https://github.com/portainer/portainer
16 lines
351 B
JavaScript
16 lines
351 B
JavaScript
|
angular.module('portainer.docker').component('dockerSidebar', {
|
||
|
templateUrl: './docker-sidebar.html',
|
||
|
bindings: {
|
||
|
isSidebarOpen: '<',
|
||
|
|
||
|
endpointApiVersion: '<',
|
||
|
swarmManagement: '<',
|
||
|
standaloneManagement: '<',
|
||
|
adminAccess: '<',
|
||
|
offlineMode: '<',
|
||
|
currentRouteName: '<',
|
||
|
endpointId: '<',
|
||
|
showStacks: '<',
|
||
|
},
|
||
|
});
|