mirror of https://github.com/apache/cloudstack.git
Add seondary storage-level parameters UI
This commit is contained in:
parent
e8295dd4b0
commit
9130cd0499
|
|
@ -10653,6 +10653,27 @@
|
|||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
// Granular settings for storage pool
|
||||
settings: {
|
||||
title: 'label.menu.global.settings',
|
||||
custom: cloudStack.uiCustom.granularSettings({
|
||||
dataProvider: function(args) {
|
||||
args.response.success({
|
||||
data: [
|
||||
{ name: 'config.param.1', value: 1 },
|
||||
{ name: 'config.param.2', value: 2 }
|
||||
]
|
||||
});
|
||||
},
|
||||
actions: {
|
||||
edit: function(args) {
|
||||
// call updateStorageLevelParameters
|
||||
args.response.success();
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue