mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
14 lines
245 B
JavaScript
14 lines
245 B
JavaScript
|
import DS from 'ember-data';
|
||
|
|
||
|
const {Transform} = DS;
|
||
|
|
||
|
export default Transform.extend({
|
||
|
deserialize: function (serialized) {
|
||
|
return serialized;
|
||
|
},
|
||
|
|
||
|
serialize: function (deserialized) {
|
||
|
return deserialized;
|
||
|
}
|
||
|
});
|