User adapter

coalesceFindRequests: false
This commit is contained in:
Matthew Dillon 2015-11-17 09:59:02 -07:00
parent 40ac4b30af
commit b19913aece
2 changed files with 7 additions and 0 deletions

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

@ -0,0 +1,7 @@
import ApplicationAdapter from '../adapters/application';
export default ApplicationAdapter.extend({
// If coalesceFindRequests is on, and we 403 on any requests, ESA logs
// the current user out. Better to split the requests up at the adapter level.
coalesceFindRequests: false,
});