Use job_ids as a key for jobs relationship for build

This commit is contained in:
Piotr Sarnacki 2015-11-11 15:37:55 +01:00
parent ca633bdf7b
commit dbd83c8643

View File

@ -40,7 +40,9 @@ var Serializer = V2FallbackSerializer.extend({
},
keyForV2Relationship: function(key, typeClass, method) {
if (key === 'repo') {
if(key === 'jobs') {
return 'job_ids';
} else if (key === 'repo') {
return 'repository_id';
} else if (key === 'commit') {
return key;