2018-05-23 17:39:43 +00:00
|
|
|
import ApplicationSerializer from './application';
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class TaskGroupDeploymentSummary extends ApplicationSerializer {
|
2018-05-23 17:39:43 +00:00
|
|
|
normalize(typeHash, hash) {
|
|
|
|
hash.PlacedCanaryAllocations = hash.PlacedCanaries || [];
|
|
|
|
delete hash.PlacedCanaries;
|
2020-06-10 13:49:16 +00:00
|
|
|
return super.normalize(typeHash, hash);
|
|
|
|
}
|
|
|
|
}
|