14 lines
422 B
JavaScript
14 lines
422 B
JavaScript
|
import ApplicationSerializer from './application';
|
||
|
|
||
|
export default ApplicationSerializer.extend({
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
return this._super(typeHash, hash);
|
||
|
},
|
||
|
});
|