import DS from 'ember-data';
import Ember from 'ember';
export default DS.JSONAPIAdapter.extend({
//host: 'http://mform.cn',
host: 'http://localhost:3000',
namespace: 'api/v1',
pathForType: function(modelName) {
//return Ember.String.underscore(type) + 's';
let decamelized = Ember.String.decamelize(modelName)
return Ember.String.pluralize(decamelized)
}
});
网友评论