mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
closes #5829 - switch application session store to inherit from ESA's `AdaptiveStore` instead of `LocalStorageStore`
6 lines
184 B
JavaScript
6 lines
184 B
JavaScript
import AdaptiveStore from 'ember-simple-auth/session-stores/adaptive';
|
|
|
|
export default AdaptiveStore.extend({
|
|
localStorageKey: 'ghost:session',
|
|
cookieName: 'ghost:session'
|
|
});
|