mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
feat(uac): add multi user management and UAC (#647)
This commit is contained in:
parent
f28f223624
commit
80d50378c5
91 changed files with 3973 additions and 866 deletions
14
app/models/volume.js
Normal file
14
app/models/volume.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
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
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue