From ad75f17e984fb1049760a301b5a9c0d130da2943 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Tue, 3 Nov 2020 09:54:27 +0100 Subject: [PATCH] :zap: Removed more parameters which exited twice --- .../nodes/Google/Drive/GoogleDrive.node.ts | 62 ------------------- 1 file changed, 62 deletions(-) diff --git a/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts b/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts index 32887ac38a..7351935e8b 100644 --- a/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts +++ b/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts @@ -746,68 +746,6 @@ export class GoogleDrive implements INodeType { }, description: 'The IDs of the parent folders which contain the file.', }, - { - displayName: 'Binary Data', - name: 'binaryData', - type: 'boolean', - default: false, - displayOptions: { - show: { - operation: [ - 'upload', - ], - resource: [ - 'file', - ], - }, - }, - description: 'If the data to upload should be taken from binary field.', - }, - { - displayName: 'File Content', - name: 'fileContent', - type: 'string', - default: '', - displayOptions: { - show: { - operation: [ - 'upload', - ], - resource: [ - 'file', - ], - binaryData: [ - false, - ], - }, - - }, - placeholder: '', - description: 'The text content of the file to upload.', - }, - { - displayName: 'Binary Property', - name: 'binaryPropertyName', - type: 'string', - default: 'data', - required: true, - displayOptions: { - show: { - operation: [ - 'upload', - ], - resource: [ - 'file', - ], - binaryData: [ - true, - ], - }, - - }, - placeholder: '', - description: 'Name of the binary property which contains
the data for the file to be uploaded.', - }, // ----------------------------------