mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
⚡ Update description for file path and folder (#1282)
This commit is contained in:
parent
f225bbbb84
commit
bf5ed9d8cf
|
@ -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 "/"',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
|
|
Loading…
Reference in a new issue