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

17 lines
375 B
JavaScript
Raw Normal View History

import { copy } from '@ember/object/internals';
2017-10-13 22:17:51 +00:00
import ApplicationSerializer from './application';
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);
},
});