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/pods/application/adapter.js
Matthew Dillon 21e0e6c624 Linting
2015-11-12 05:54:18 -07:00

27 lines
555 B
JavaScript

import DS from 'ember-data';
import DataAdapterMixin from 'ember-simple-auth/mixins/data-adapter-mixin';
const { RESTAdapter } = DS;
export default RESTAdapter.extend(DataAdapterMixin, {
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;
}
});