mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
b4c3e1ae40
refs https://github.com/TryGhost/Admin/pull/2227 - a continuation of #2227 that runs the native classes codemod against app/transforms
14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
import Transform from '@ember-data/serializer/transform';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
export default class Raw extends Transform {
|
|
deserialize(serialized) {
|
|
return serialized;
|
|
}
|
|
|
|
serialize(deserialized) {
|
|
return deserialized;
|
|
}
|
|
}
|