n8n/packages/nodes-base/credentials/GoogleDriveOAuth2Api.credentials.ts

28 lines
587 B
TypeScript
Raw Normal View History

2020-06-06 11:57:42 -07:00
import {
ICredentialType,
INodeProperties,
2020-06-06 11:57:42 -07:00
} from 'n8n-workflow';
const scopes = [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.appdata',
'https://www.googleapis.com/auth/drive.photos.readonly',
];
export class GoogleDriveOAuth2Api implements ICredentialType {
name = 'googleDriveOAuth2Api';
extends = [
'googleOAuth2Api',
];
displayName = 'Google Drive OAuth2 API';
documentationUrl = 'google';
properties: INodeProperties[] = [
2020-06-06 11:57:42 -07:00
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
2020-06-06 11:57:42 -07:00
default: scopes.join(' '),
},
];
}