mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
850a223dd4
refs https://github.com/TryGhost/Admin/pull/2242 - there was no further EmberObject specific usage to migrate for these classes so the @classic decorator is not necessary
13 lines
358 B
JavaScript
13 lines
358 B
JavaScript
import Transform from '@ember-data/serializer/transform';
|
|
|
|
export default class JsonString extends Transform {
|
|
deserialize(serialized) {
|
|
let _serialized = serialized === '' ? null : serialized;
|
|
return JSON.parse(_serialized);
|
|
}
|
|
|
|
serialize(deserialized) {
|
|
return deserialized ? JSON.stringify(deserialized) : null;
|
|
}
|
|
}
|