cms/app-client/app/serializers/geostat.js
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 23 Sep 2016 15:43:52 +0200
changeset 284 12448de16a63
child 319 78990a8a069b
permissions -rw-r--r--
Add mirage geostat files

import DS from 'ember-data';

export default DS.Serializer.extend({

    normalizeResponse: function(store, primaryModelClass, payload) {
        var data = [];
        Object.keys(payload).forEach(function(key) {
            data.push({
                'id': key,
                'type': 'geostat',
                'attributes': {
                    'count': payload[key]
                }
            });
        });
        return {
            'data': data
        };
    }

});