docs: Add api notice to credentials for google sheets nodes (no-changelog) (#6024)

This commit is contained in:
Jon 2023-04-20 11:40:35 +01:00 committed by GitHub
parent a68330ff66
commit 2579fe9631
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -22,5 +22,12 @@ export class GoogleSheetsOAuth2Api implements ICredentialType {
type: 'hidden',
default: scopes.join(' '),
},
{
displayName:
'Make sure you enabled the following APIs & Services in the Google Cloud Console: Google Drive API, Google Sheets API. <a href="https://docs.n8n.io/integrations/builtin/credentials/google/oauth-generic/#scopes" target="_blank">More info</a>.',
name: 'notice',
type: 'notice',
default: '',
},
];
}

View file

@ -23,5 +23,12 @@ export class GoogleSheetsTriggerOAuth2Api implements ICredentialType {
type: 'hidden',
default: scopes.join(' '),
},
{
displayName:
'Make sure you have enabled the following APIs & Services in the Google Cloud Console: Google Drive API, Google Sheets API. <a href="https://docs.n8n.io/integrations/builtin/credentials/google/oauth-generic/#scopes" target="_blank">More info</a>.',
name: 'notice',
type: 'notice',
default: '',
},
];
}