2018-05-30 08:04:51 +00:00
|
|
|
import ApplicationSerializer from './application';
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class DrainStrategy extends ApplicationSerializer {
|
2018-05-30 08:04:51 +00:00
|
|
|
normalize(typeHash, hash) {
|
|
|
|
// TODO API: finishedAt is always marshaled as a date even when unset.
|
|
|
|
// To simplify things, unset it here when it's the empty date value.
|
|
|
|
if (hash.ForceDeadline === '0001-01-01T00:00:00Z') {
|
|
|
|
hash.ForceDeadline = null;
|
|
|
|
}
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
return super.normalize(typeHash, hash);
|
|
|
|
}
|
|
|
|
}
|