Properly normalize ssh key

This commit is contained in:
Piotr Sarnacki 2015-12-17 13:07:31 +01:00
parent 462b3d637f
commit fdd7b5b91b
3 changed files with 9 additions and 3 deletions

View File

@ -19,7 +19,6 @@ Adapter = ApplicationAdapter.extend
id = Ember.get(record, 'id')
this.ajax(this.urlPrefix() + '/ssh_key/' + id, "PATCH", { data: data }).then (data) ->
data.ssh_key
this.ajax(this.urlPrefix() + '/ssh_key/' + id, "PATCH", { data: data })
`export default Adapter`

View File

@ -19,7 +19,9 @@ Route = TravisRoute.extend
fetchCustomSshKey: () ->
repo = @modelFor('repo')
self = this
@store.find('ssh_key', repo.get('id')).then ( (result) -> result unless result.get('isNew') ), (xhr) ->
@store.find('ssh_key', repo.get('id')).then ( (result) ->
result unless result.get('isNew')
), (xhr) ->
if xhr.status == 404
# if there is no model, just return null. I'm not sure if this is the
# best answer, maybe we should just redirect to different route, like

View File

@ -3,5 +3,10 @@ import ApplicationSerializer from 'travis/serializers/application';
export default ApplicationSerializer.extend({
serialize(snapshot, options) {
return { ssh_key: this._super(...arguments) };
},
normalizeSingleResponse(store, primaryModelClass, payload, id, requestType) {
payload = payload.ssh_key;
return this._super(store, primaryModelClass, payload, id, requestType);
}
});