This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/adapters/application.js
Matthew Dillon b19913aece User adapter
coalesceFindRequests: false
2015-11-17 09:59:02 -07:00

31 lines
644 B
JavaScript

import DS from 'ember-data';
import DataAdapterMixin from 'ember-simple-auth/mixins/data-adapter-mixin';
import Ember from 'ember';
const { inject: { service } } = Ember;
const { RESTAdapter } = DS;
export default RESTAdapter.extend(DataAdapterMixin, {
globals: service(),
authorizer: 'authorizer:application',
namespace: function() {
return 'api/' + this.get('globals.genus');
}.property(),
host: function() {
return this.get('globals.apiURL');
}.property(),
coalesceFindRequests: true,
shouldReloadAll: function() {
return true;
},
shouldBackgroundReloadRecord: function() {
return false;
}
});