mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(ClickUp Node): Add subtasks and markdown support to the get task operation (#16811)
Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
committed by
GitHub
parent
ddc4c0b7d9
commit
a5184e4895
@@ -457,6 +457,33 @@ export const taskFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Include Subtasks',
|
||||
name: 'includeSubtasks',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether to also fetch and include subtasks for this task',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['task'],
|
||||
operation: ['get'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Include Markdown Description',
|
||||
name: 'includeMarkdownDescription',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description:
|
||||
'Whether to include the markdown_description field in the response. This is important for preserving links in the description.',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['task'],
|
||||
operation: ['get'],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* task:getAll */
|
||||
|
||||
Reference in New Issue
Block a user