mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
63a525f4ad
closes #5829 - switch application session store to inherit from ESA's `AdaptiveStore` instead of `LocalStorageStore`
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
import AdaptiveStore from 'ember-simple-auth/session-stores/adaptive';
|
|
|
|
export default AdaptiveStore.extend({
|
|
localStorageKey: 'ghost:session',
|
|
cookieName: 'ghost:session'
|
|
});
|