Clean up species id in strain serializer
This commit is contained in:
parent
b78aa571ee
commit
99c94e9c7b
1 changed files with 13 additions and 0 deletions
13
app/serializers/strain.js
Normal file
13
app/serializers/strain.js
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
import DS from 'ember-data';
|
||||||
|
|
||||||
|
export default DS.RESTSerializer.extend({
|
||||||
|
isNewSerializerAPI: true,
|
||||||
|
|
||||||
|
serializeBelongsTo: function(snapshot, json, relationship) {
|
||||||
|
var key = relationship.key;
|
||||||
|
var belongsTo = snapshot.belongsTo(key);
|
||||||
|
key = this.keyForRelationship ? this.keyForRelationship(key, "belongsTo", "serialize") : key;
|
||||||
|
json[key] = Ember.isNone(belongsTo) ? belongsTo : +belongsTo.record.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
Reference in a new issue