Fix adding ssh keys and env vars

This commit is contained in:
Piotr Sarnacki 2015-12-07 16:43:07 +01:00
parent 6db80a4073
commit ada9e9ba02
2 changed files with 10 additions and 0 deletions

View File

@ -6,4 +6,7 @@ Serializer = ApplicationSerializer.extend
repo: { key: 'repository_id' }
}
serialize: (snapshot, options) ->
return { env_var: this._super(snapshot, options) }
`export default Serializer`

View File

@ -0,0 +1,7 @@
import ApplicationSerializer from 'travis/serializers/application';
export default ApplicationSerializer.extend({
serialize(snapshot, options) {
return { ssh_key: this._super(...arguments) };
}
});