mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 01:15:43 +03:00
9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
import ApplicationSerializer from './application';
|
|
|
|
export default ApplicationSerializer.extend({
|
|
normalize(typeHash, hash) {
|
|
hash.ID = hash.Name;
|
|
return this._super(typeHash, hash);
|
|
},
|
|
});
|