12 lines
351 B
JavaScript
12 lines
351 B
JavaScript
import ApplicationSerializer from './application';
|
|
import { get } from '@ember/object';
|
|
|
|
export default class JobPlan extends ApplicationSerializer {
|
|
mapToArray = ['FailedTGAllocs'];
|
|
|
|
normalize(typeHash, hash) {
|
|
hash.PreemptionIDs = (get(hash, 'Annotations.PreemptedAllocs') || []).mapBy('ID');
|
|
return super.normalize(...arguments);
|
|
}
|
|
}
|