open-nomad/ui/app/serializers/policy.js

9 lines
202 B
JavaScript
Raw Normal View History

2017-10-13 22:17:51 +00:00
import ApplicationSerializer from './application';
export default ApplicationSerializer.extend({
normalize(typeHash, hash) {
hash.ID = hash.Name;
return this._super(typeHash, hash);
},
});