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

19 lines
379 B
JavaScript
Raw Normal View History

2017-10-13 22:17:51 +00:00
import Ember from 'ember';
import ApplicationSerializer from './application';
const { copy } = Ember;
export default ApplicationSerializer.extend({
primaryKey: 'AccessorID',
attrs: {
secret: 'SecretID',
},
normalize(typeHash, hash) {
hash.PolicyIDs = hash.Policies;
hash.PolicyNames = copy(hash.Policies);
return this._super(typeHash, hash);
},
});