mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-14 02:27:02 +02: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);
|
|
},
|
|
});
|