mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
31 lines
981 B
JavaScript
31 lines
981 B
JavaScript
var AuthenticationInitializer = {
|
|
|
|
name: 'authentication',
|
|
before: 'simple-auth',
|
|
after: 'registerTrailingLocationHistory',
|
|
|
|
initialize: function (container) {
|
|
window.ENV = window.ENV || {};
|
|
window.ENV['simple-auth'] = {
|
|
authenticationRoute: 'signin',
|
|
routeAfterAuthentication: 'content',
|
|
authorizer: 'simple-auth-authorizer:oauth2-bearer'
|
|
};
|
|
SimpleAuth.Session.reopen({
|
|
user: function () {
|
|
return container.lookup('store:main').find('user', 'me');
|
|
}.property()
|
|
});
|
|
SimpleAuth.Authenticators.OAuth2.reopen({
|
|
serverTokenEndpoint: '/ghost/api/v0.1/authentication/token',
|
|
refreshAccessTokens: true,
|
|
makeRequest: function (url, data) {
|
|
data.client_id = 'ghost-admin';
|
|
return this._super(url, data);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
export default AuthenticationInitializer;
|