I am using ember appkit for a beginner ember project. I am working with an existing API and my model looks as such:
export default Ember.Route.extend({
model: function(){
return this.store.find('prequalification');
}
});
When the API call happens, the URL is pluralized, prequalifications. I am trying to configure the RestAdapter but not sure where in the code flow this should happen.
Thanks for any help