mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
Added due_date to gitlab create and edit issue
This commit is contained in:
parent
7bc7323aab
commit
021762c74e
|
@ -317,7 +317,31 @@ export class Gitlab implements INodeType {
|
|||
},
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
displayName: 'Due Date',
|
||||
name: 'date_date',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
resource: [
|
||||
'issue',
|
||||
],
|
||||
},
|
||||
},
|
||||
default: { 'due_date': '' },
|
||||
options: [
|
||||
{
|
||||
displayName: 'Due Date',
|
||||
name: 'date_date',
|
||||
type: 'string',
|
||||
default: 0,
|
||||
description: 'Due Date for issue. Date time string in the format YEAR-MONTH-DAY, e.g. 2016-03-11',
|
||||
},
|
||||
],
|
||||
},
|
||||
// ----------------------------------
|
||||
// issue:createComment
|
||||
// ----------------------------------
|
||||
|
@ -474,6 +498,13 @@ export class Gitlab implements INodeType {
|
|||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Due Date',
|
||||
name: 'due_date',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The Due Date of the issue. Date time string in the format YEAR-MONTH-DAY, e.g. 2016-03-11',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue