open-nomad/ui/app/serializers/node-attributes.js

8 lines
197 B
JavaScript
Raw Normal View History

2017-09-19 14:47:10 +00:00
import ApplicationSerializer from './application';
export default ApplicationSerializer.extend({
normalize(typeHash, hash) {
2019-10-08 18:44:19 +00:00
return this._super(typeHash, { NodeAttributes: hash });
2017-09-19 14:47:10 +00:00
},
});