n8n-nodes-base
Version:
Base nodes of n8n
30 lines • 1.12 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GoogleDriveOAuth2Api = void 0;
const scopes = [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.appdata',
'https://www.googleapis.com/auth/drive.photos.readonly',
];
class GoogleDriveOAuth2Api {
name = 'googleDriveOAuth2Api';
extends = ['googleOAuth2Api'];
displayName = 'Google Drive OAuth2 API';
documentationUrl = 'google/oauth-single-service';
properties = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
{
displayName: 'Make sure that you have enabled the Google Drive API in the Google Cloud Console. <a href="https://docs.n8n.io/integrations/builtin/credentials/google/oauth-generic/#scopes" target="_blank">More info</a>.',
name: 'notice',
type: 'notice',
default: '',
},
];
}
exports.GoogleDriveOAuth2Api = GoogleDriveOAuth2Api;
//# sourceMappingURL=GoogleDriveOAuth2Api.credentials.js.map