fix(core): Allow ignoring SSL issues on generic oauth2 credentials (#6702)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-07-26 17:56:59 +02:00
committed by GitHub
parent db3c12ffc7
commit feac369f6c
8 changed files with 36 additions and 8 deletions

View File

@@ -1116,6 +1116,7 @@ export interface INodeProperties {
extractValue?: INodePropertyValueExtractor;
modes?: INodePropertyMode[];
requiresDataPath?: 'single' | 'multiple';
doNotInherit?: boolean;
}
export interface INodePropertyModeTypeOptions {

View File

@@ -1601,6 +1601,8 @@ export function mergeNodeProperties(
): void {
let existingIndex: number;
for (const property of addProperties) {
if (property.doNotInherit) continue;
existingIndex = mainProperties.findIndex((element) => element.name === property.name);
if (existingIndex === -1) {