mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
⚡ Improvements to Google Tasks node
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
import { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
|
||||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
const scopes = ['https://www.googleapis.com/auth/tasks'];
|
||||
const scopes = [
|
||||
'https://www.googleapis.com/auth/tasks',
|
||||
];
|
||||
|
||||
export class GoogleTasksOAuth2Api implements ICredentialType {
|
||||
name = 'googleTasksOAuth2Api';
|
||||
@@ -12,6 +17,6 @@ export class GoogleTasksOAuth2Api implements ICredentialType {
|
||||
name: 'scope',
|
||||
type: 'hidden' as NodePropertyTypes,
|
||||
default: scopes.join(' ')
|
||||
}
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user