mirror of
https://github.com/kemko/nomad.git
synced 2026-01-16 07:15:40 +03:00
9 lines
244 B
JavaScript
9 lines
244 B
JavaScript
import ApplicationSerializer from './application';
|
|
|
|
export default ApplicationSerializer.extend({
|
|
serialize() {
|
|
var json = ApplicationSerializer.prototype.serialize.apply(this, arguments);
|
|
return [].concat(json).mapBy('ID');
|
|
},
|
|
});
|