9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
|
import Authenticator from 'simple-auth-oauth2/authenticators/oauth2';
|
||
|
|
||
|
export default Authenticator.extend({
|
||
|
makeRequest: function (url, data) {
|
||
|
data.client_id = 'ghost-admin';
|
||
|
return this._super(url, data);
|
||
|
}
|
||
|
});
|