8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
import ApplicationSerializer from './application';
|
|
|
|
export default ApplicationSerializer.extend({
|
|
normalize(typeHash, hash) {
|
|
return this._super(typeHash, { NodeAttributes: hash });
|
|
},
|
|
});
|