mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
11 lines
359 B
JavaScript
11 lines
359 B
JavaScript
import AdaptiveStore from 'ember-simple-auth/session-stores/adaptive';
|
|
import ghostPaths from 'ghost-admin/utils/ghost-paths';
|
|
|
|
const paths = ghostPaths();
|
|
const keyName = `ghost${(paths.subdir.indexOf('/') === 0 ? `-${paths.subdir.substr(1)}` : '') }:session`;
|
|
|
|
export default AdaptiveStore.extend({
|
|
localStorageKey: keyName,
|
|
cookieName: keyName
|
|
});
|