mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Jira Software Node): Add Wiki Markup support for Jira Cloud comments (#8857)
Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com>
This commit is contained in:
@@ -111,7 +111,7 @@ export const issueCommentFields: INodeProperties[] = [
|
||||
displayName: 'Options',
|
||||
name: 'options',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
placeholder: 'Add Option',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
@@ -130,10 +130,23 @@ export const issueCommentFields: INodeProperties[] = [
|
||||
value: 'renderedBody',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
default: [],
|
||||
description:
|
||||
'Use expand to include additional information about comments in the response. This parameter accepts Rendered Body, which returns the comment body rendered in HTML.',
|
||||
},
|
||||
{
|
||||
displayName: 'Use Wiki Markup',
|
||||
name: 'wikiMarkup',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
'/jiraVersion': ['cloud'],
|
||||
},
|
||||
},
|
||||
description:
|
||||
'Whether to enable parsing of wikiformatting for this comment. Default is false.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -269,7 +282,7 @@ export const issueCommentFields: INodeProperties[] = [
|
||||
value: 'renderedBody',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
default: 'renderedBody',
|
||||
description:
|
||||
'Use expand to include additional information about comments in the response. This parameter accepts Rendered Body, which returns the comment body rendered in HTML.',
|
||||
},
|
||||
@@ -384,7 +397,7 @@ export const issueCommentFields: INodeProperties[] = [
|
||||
displayName: 'Options',
|
||||
name: 'options',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
placeholder: 'Add Option',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
@@ -403,10 +416,23 @@ export const issueCommentFields: INodeProperties[] = [
|
||||
value: 'renderedBody',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
default: 'renderedBody',
|
||||
description:
|
||||
'Use expand to include additional information about comments in the response. This parameter accepts Rendered Body, which returns the comment body rendered in HTML.',
|
||||
},
|
||||
{
|
||||
displayName: 'Use Wiki Markup',
|
||||
name: 'wikiMarkup',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
'/jiraVersion': ['cloud'],
|
||||
},
|
||||
},
|
||||
description:
|
||||
'Whether to enable parsing of wikiformatting for this comment. Default is false.',
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user