22 lines
394 B
JavaScript
22 lines
394 B
JavaScript
import DS from 'ember-data';
|
|
|
|
export default DS.RESTAdapter.extend({
|
|
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;
|
|
}
|
|
|
|
});
|