Fix hooks toggling

New ember-data serializers send data without a model key in the payload
by default, so instead of what API expects:

    {
      "hook": {
        "id": 1,
        "active": true
      }
    }

it would send:

    { "id": 1, "active": true }

Because of that we need to change how hooks are serialized.

Furthermore, API V2 returns just "result: true" after a successful
request to change a hook, so we need to return something meaningful from
the adapter's updateRecord in order to make ember-data happy.
This commit is contained in:
Piotr Sarnacki 2015-12-02 12:34:05 +01:00
parent 0d9755489f
commit d4955c1ed0
2 changed files with 16 additions and 0 deletions

9
app/adapters/hook.js Normal file
View File

@ -0,0 +1,9 @@
import ApplicationAdapter from 'travis/adapters/application';
export default ApplicationAdapter.extend({
updateRecord(store, type, snapshot) {
return this._super(...arguments).then( (data) => {
return { hook: { id: snapshot.id } };
});
}
});

7
app/serializers/hook.js Normal file
View File

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