Merge "Drop readonly image metadata properties from request"

This commit is contained in:
Zuul 2023-03-07 08:29:51 +00:00 committed by Gerrit Code Review
commit 5663e0865b
1 changed files with 6 additions and 0 deletions

View File

@ -47,6 +47,8 @@
getResourceTypes: getResourceTypes
};
var READONLY_PROPERTIES = ['os_hash_algo', 'os_hash_value'];
return service;
///////////////
@ -278,6 +280,10 @@
* @returns {Object} The result of the API call
*/
function editImageProps(id, updated, removed) {
angular.forEach(READONLY_PROPERTIES, function(key) {
delete updated[key];
});
return apiService.patch(
'/api/glance/images/' + id + '/properties/',
{