mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
|
function VolumeViewModel(data) {
|
||
|
this.Id = data.Id;
|
||
|
this.Name = data.Name;
|
||
|
this.Driver = data.Driver;
|
||
|
this.Mountpoint = data.Mountpoint;
|
||
|
if (data.Portainer) {
|
||
|
this.Metadata = {};
|
||
|
if (data.Portainer.ResourceControl) {
|
||
|
this.Metadata.ResourceControl = {
|
||
|
OwnerId: data.Portainer.ResourceControl.OwnerId
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|