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