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