mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
👕 Fix lint issue
This commit is contained in:
parent
6e44f51a22
commit
dfc3cb962c
|
@ -261,7 +261,7 @@ export const restApi = Vue.extend({
|
||||||
OAuth2Callback: (code: string, state: string): Promise<string> => {
|
OAuth2Callback: (code: string, state: string): Promise<string> => {
|
||||||
const sendData = {
|
const sendData = {
|
||||||
'code': code,
|
'code': code,
|
||||||
'state': state
|
'state': state,
|
||||||
};
|
};
|
||||||
|
|
||||||
return self.restApi().makeRestApiRequest('POST', `/oauth2-credential/callback`, sendData);
|
return self.restApi().makeRestApiRequest('POST', `/oauth2-credential/callback`, sendData);
|
||||||
|
|
Loading…
Reference in a new issue