mirror of https://github.com/portainer/portainer
24 lines
737 B
JavaScript
24 lines
737 B
JavaScript
function NetworkViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Name = data.Name;
|
|
this.Scope = data.Scope;
|
|
this.Driver = data.Driver;
|
|
this.Attachable = data.Attachable;
|
|
this.IPAM = data.IPAM;
|
|
this.Containers = data.Containers;
|
|
this.Options = data.Options;
|
|
|
|
this.Labels = data.Labels;
|
|
if (this.Labels && this.Labels['com.docker.compose.project']) {
|
|
this.StackName = this.Labels['com.docker.compose.project'];
|
|
} else if (this.Labels && this.Labels['com.docker.stack.namespace']) {
|
|
this.StackName = this.Labels['com.docker.stack.namespace'];
|
|
}
|
|
|
|
if (data.Portainer) {
|
|
if (data.Portainer.ResourceControl) {
|
|
this.ResourceControl = new ResourceControlViewModel(data.Portainer.ResourceControl);
|
|
}
|
|
}
|
|
}
|