| author | ymh <ymh.work@gmail.com> |
| Tue, 15 Nov 2016 18:27:17 +0100 | |
| changeset 426 | d8ae6c0c0a0a |
| parent 319 | 78990a8a069b |
| child 474 | 245b4df137d3 |
| permissions | -rw-r--r-- |
import DS from 'ember-data'; export default DS.JSONSerializer.extend({ normalizeResponse: function(store, primaryModelClass, payload) { var data = []; var themes = payload['themes']; Object.keys(themes).forEach(function(key) { data.push({ 'id': key, 'type': 'theme', 'attributes': { 'label': themes[key].label, 'count': themes[key].count } }); }); return { 'data': data }; } });