mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-02 07:43:11 +03:00
29 lines
897 B
JavaScript
29 lines
897 B
JavaScript
import Ember from 'ember';
|
|
import Authenticator from 'ember-simple-auth/authenticators/oauth2-password-grant';
|
|
|
|
const {
|
|
computed,
|
|
inject: {service}
|
|
} = Ember;
|
|
|
|
export default Authenticator.extend({
|
|
config: service(),
|
|
ghostPaths: service(),
|
|
|
|
serverTokenEndpoint: computed('ghostPaths.apiRoot', function () {
|
|
return `${this.get('ghostPaths.apiRoot')}/authentication/token`;
|
|
}),
|
|
|
|
serverTokenRevocationEndpoint: computed('ghostPaths.apiRoot', function () {
|
|
return `${this.get('ghostPaths.apiRoot')}/authentication/revoke`;
|
|
}),
|
|
|
|
makeRequest(url, data) {
|
|
/* jscs:disable requireCamelCaseOrUpperCaseIdentifiers */
|
|
data.client_id = this.get('config.clientId');
|
|
data.client_secret = this.get('config.clientSecret');
|
|
/* jscs:enable requireCamelCaseOrUpperCaseIdentifiers */
|
|
return this._super(url, data);
|
|
}
|
|
});
|