From bf5ed9d8cf1488ea235ab49a2df3b86ebfcc26f4 Mon Sep 17 00:00:00 2001 From: Harshil Agrawal Date: Sat, 3 Apr 2021 16:59:07 +0200 Subject: [PATCH] :zap: Update description for file path and folder (#1282) --- .../nodes/NextCloud/NextCloud.node.ts | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/nodes-base/nodes/NextCloud/NextCloud.node.ts b/packages/nodes-base/nodes/NextCloud/NextCloud.node.ts index 096b39427f..dd65e4d86b 100644 --- a/packages/nodes-base/nodes/NextCloud/NextCloud.node.ts +++ b/packages/nodes-base/nodes/NextCloud/NextCloud.node.ts @@ -233,7 +233,7 @@ export class NextCloud implements INodeType { }, }, placeholder: '/invoices/original.txt', - description: 'The path of file or folder to copy.', + description: 'The path of file or folder to copy. The path should start with "/"', }, { displayName: 'To Path', @@ -253,7 +253,7 @@ export class NextCloud implements INodeType { }, }, placeholder: '/invoices/copy.txt', - description: 'The destination path of file or folder.', + description: 'The destination path of file or folder. The path should start with "/"', }, // ---------------------------------- @@ -276,8 +276,8 @@ export class NextCloud implements INodeType { ], }, }, - placeholder: 'invoices/2019/invoice_1.pdf', - description: 'The path to delete. Can be a single file or a whole folder.', + placeholder: '/invoices/2019/invoice_1.pdf', + description: 'The path to delete. Can be a single file or a whole folder. The path should start with "/"', }, // ---------------------------------- @@ -301,7 +301,7 @@ export class NextCloud implements INodeType { }, }, placeholder: '/invoices/old_name.txt', - description: 'The path of file or folder to move.', + description: 'The path of file or folder to move. The path should start with "/"', }, { displayName: 'To Path', @@ -321,7 +321,7 @@ export class NextCloud implements INodeType { }, }, placeholder: '/invoices/new_name.txt', - description: 'The new path of file or folder.', + description: 'The new path of file or folder. The path should start with "/"', }, // ---------------------------------- @@ -343,8 +343,8 @@ export class NextCloud implements INodeType { ], }, }, - placeholder: 'invoices/2019/invoice_1.pdf', - description: 'The file path of the file to download. Has to contain the full path.', + placeholder: '/invoices/2019/invoice_1.pdf', + description: 'The file path of the file to download. Has to contain the full path. The path should start with "/"', }, { displayName: 'Binary Property', @@ -384,8 +384,8 @@ export class NextCloud implements INodeType { ], }, }, - placeholder: 'invoices/2019/invoice_1.pdf', - description: 'The file path of the file to upload. Has to contain the full path. The parent folder has to exist. Existing files get overwritten.', + placeholder: '/invoices/2019/invoice_1.pdf', + description: 'The absolute file path of the file to upload. Has to contain the full path. The parent folder has to exist. Existing files get overwritten.', }, { displayName: 'Binary Data', @@ -476,8 +476,8 @@ export class NextCloud implements INodeType { ], }, }, - placeholder: 'invoices/2019', - description: 'The folder to create. The parent folder has to exist.', + placeholder: '/invoices/2019', + description: 'The folder to create. The parent folder has to exist. The path should start with "/"', }, // ---------------------------------- @@ -498,8 +498,8 @@ export class NextCloud implements INodeType { ], }, }, - placeholder: 'invoices/2019/', - description: 'The path of which to list the content.', + placeholder: '/invoices/2019/', + description: 'The path of which to list the content. The path should start with "/"', }, // ----------------------------------