mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-06 13:38:01 +00:00
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
import { decamelize } from '@ember/string';
|
|
import DS from 'ember-data';
|
|
|
|
export default DS.RESTSerializer.extend({
|
|
keyForAttribute: function(attr) {
|
|
return decamelize(attr);
|
|
},
|
|
});
|