2019-03-26 04:55:06 +00:00
|
|
|
import { copy } from 'ember-copy';
|
2017-09-19 14:47:10 +00:00
|
|
|
import ApplicationSerializer from './application';
|
|
|
|
|
|
|
|
export default ApplicationSerializer.extend({
|
|
|
|
normalize(typeHash, hash) {
|
|
|
|
// Provide EphemeralDisk to each task
|
|
|
|
hash.Tasks.forEach(task => {
|
|
|
|
task.EphemeralDisk = copy(hash.EphemeralDisk);
|
|
|
|
});
|
|
|
|
|
|
|
|
hash.ReservedEphemeralDisk = hash.EphemeralDisk.SizeMB;
|
2019-09-13 22:42:14 +00:00
|
|
|
hash.Services = hash.Services || [];
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2020-02-11 00:19:28 +00:00
|
|
|
const volumes = hash.Volumes || {};
|
|
|
|
hash.Volumes = Object.keys(volumes).map(key => volumes[key]);
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
return this._super(typeHash, hash);
|
|
|
|
},
|
|
|
|
});
|