mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🔀 Merge branch 'oauth-support' of github.com:n8n-io/n8n into oauth-support
This commit is contained in:
commit
1e68c16b40
|
@ -194,6 +194,9 @@ export default mixins(
|
|||
return this.credentialDataTemp;
|
||||
},
|
||||
isOAuthType (): boolean {
|
||||
if (this.credentialTypeData.name === 'oAuth2Api') {
|
||||
return true;
|
||||
}
|
||||
const types = this.parentTypes(this.credentialTypeData.name);
|
||||
return types.includes('oAuth2Api');
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue