mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Fix session restoration
no issue - upgrading to `ember-simple-auth` 1.5.1 introduced a session restoration bug due to a change in the underlying initializer that we override
This commit is contained in:
parent
3f1853c635
commit
f619c3133f
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@ import Configuration from 'ember-simple-auth/configuration';
|
|||
import ENV from '../config/environment';
|
||||
import ghostPaths from '../utils/ghost-paths';
|
||||
import setupSession from 'ember-simple-auth/initializers/setup-session';
|
||||
import setupSessionRestoration from 'ember-simple-auth/initializers/setup-session-restoration';
|
||||
import setupSessionService from 'ember-simple-auth/initializers/setup-session-service';
|
||||
|
||||
export default {
|
||||
|
@ -13,5 +14,6 @@ export default {
|
|||
|
||||
setupSession(registry);
|
||||
setupSessionService(registry);
|
||||
setupSessionRestoration(registry);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue