Ghost/core/client/app/initializers/ghost-authenticator.js
Kevin Ansfield 62684dffff Fix auth token refresh failing on app-boot with expired access_token
issue #5751
- moves `makeRequest` override of simple-auth's OAuth authenticator into our own custom authenticator (previously our override was not taking effect until after ember-simple-auth's initial authentication routines, hence why it was working for post-login token refreshes but failing on app-boot)
2015-08-28 16:00:34 +01:00

13 lines
300 B
JavaScript

import GhostOauth2Authenticator from 'ghost/authenticators/oauth2';
export default {
name: 'ghost-authentictor',
initialize: function (container) {
container.register(
'ghost-authenticator:oauth2-password-grant',
GhostOauth2Authenticator
);
}
};