mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
71215847c8
no issue - added ghost-admin client_id to admin - added ghost-admin client_secret to admin - added client.read() api endpoint - added random generation of client_secret to migration - removed addClientSecret method - updated tests
12 lines
377 B
JavaScript
12 lines
377 B
JavaScript
import Ember from 'ember';
|
|
import Authenticator from 'simple-auth-oauth2/authenticators/oauth2';
|
|
|
|
export default Authenticator.extend({
|
|
config: Ember.inject.service(),
|
|
makeRequest: function (url, data) {
|
|
data.client_id = this.get('config.clientId');
|
|
data.client_secret = this.get('config.clientSecret');
|
|
return this._super(url, data);
|
|
}
|
|
});
|