You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/docker/helpers/configHelper.js

36 lines
895 B

angular.module('portainer.docker').factory('ConfigHelper', [
function ConfigHelperFactory() {
'use strict';
return {
flattenConfig: function (config) {
if (config) {
return {
Id: config.ConfigID,
Name: config.ConfigName,
FileName: config.File.Name,
Uid: config.File.UID,
Gid: config.File.GID,
Mode: config.File.Mode,
};
}
return {};
},
configConfig: function (config) {
if (config) {
return {
ConfigID: config.Id,
ConfigName: config.Name,
File: {
Name: config.FileName || config.Name,
UID: config.Uid || '0',
GID: config.Gid || '0',
Mode: config.Mode || 292,
},
};
}
return {};
},
};
},
]);