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
12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
import Transform from '@ember-data/serializer/transform';
|
|
|
|
export default class Raw extends Transform {
|
|
deserialize(serialized) {
|
|
return serialized;
|
|
}
|
|
|
|
serialize(deserialized) {
|
|
return deserialized;
|
|
}
|
|
}
|