22 lines
549 B
JavaScript
22 lines
549 B
JavaScript
import ApplicationSerializer from './application';
|
|
import { arrToObj } from '../utils';
|
|
|
|
export default ApplicationSerializer.extend({
|
|
embed: true,
|
|
include: ['taskGroupScales'],
|
|
|
|
serialize() {
|
|
var json = ApplicationSerializer.prototype.serialize.apply(this, arguments);
|
|
if (json instanceof Array) {
|
|
json.forEach(serializeJobScale);
|
|
} else {
|
|
serializeJobScale(json);
|
|
}
|
|
return json;
|
|
},
|
|
});
|
|
|
|
function serializeJobScale(jobScale) {
|
|
jobScale.TaskGroups = jobScale.TaskGroupScales.reduce(arrToObj('Name'), {});
|
|
}
|