with all the changes to ember-data ( see here ), I am struggling to determine if the json format has changed as well.
for example, if I have the following model
App.Contact = DS.Model.extend({
contactGroupGUID: DS.attr('string'),
email: DS.attr('string'),
firstName: DS.attr('string'),
id: DS.attr('string'),
lastName: DS.attr('string'),
notes: DS.attr('string')
})
what is the json field names for contactGroupGUID, firstName and lastName ?
is it still first_name and last_name ? (I never figured out what contactGroupGUID should be ;) )
thanks