In Ember data 0.13, pluralization was defined as follows:
DS.RESTAdapter.configure("plurals", {
category: "categories"
});
Configure no longer exists and thus there needs to be another way to define plurals.
By magic, it seems that if I do a find via "return this.store.find('category');", the JSON call includes /categories and not /categorys, although I have not at all specified that the plural of category is categories ...
How can Ember data determine this ? Is there a way to override ?
Thx