What naming convention should I follow for multi-word REST API resource names so that everything “just works” with Ember Data? I was planning to use dashes – e.g., potato-chips – since this seems to be recommended best practice with REST, but then I don’t know how this would work with relations since I want the JSON field names to be camelCase – potatoChips. Will Ember Data do this conversion automatically or do I need to make my resource name “potatoChips”?
P.S. It would be really great if some of the examples in the documentation used multi-word names!