Roughing in users resource

This commit is contained in:
Matthew Dillon 2015-04-10 11:51:22 -08:00
parent 3f0b074619
commit 5048fb7695
11 changed files with 154 additions and 2 deletions

8
app/adapters/user.js Normal file
View file

@ -0,0 +1,8 @@
import DS from 'ember-data';
import config from '../config/environment';
export default DS.RESTAdapter.reopen({
namespace: 'api',
host: config.apiURL,
coalesceFindRequests: true,
});