mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
feat(Asana Node): Add support for project privacy settings (#10027)
This commit is contained in:
parent
470d4966c6
commit
429481c5c4
|
@ -1448,6 +1448,27 @@ export class Asana implements INodeType {
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Basic description or notes for the project',
|
description: 'Basic description or notes for the project',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Privacy Setting',
|
||||||
|
name: 'privacy_setting',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Private',
|
||||||
|
value: 'private',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Private to Team',
|
||||||
|
value: 'private_to_team',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Public to Workspace',
|
||||||
|
value: 'public_to_workspace',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: 'private',
|
||||||
|
description: 'The privacy setting of the project',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -1659,6 +1680,27 @@ export class Asana implements INodeType {
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The new assignee/cardinal for this project',
|
description: 'The new assignee/cardinal for this project',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Privacy Setting',
|
||||||
|
name: 'privacy_setting',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Private',
|
||||||
|
value: 'private',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Private to Team',
|
||||||
|
value: 'private_to_team',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Public to Workspace',
|
||||||
|
value: 'public_to_workspace',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: 'private',
|
||||||
|
description: 'The privacy setting of the project',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Team Name or ID',
|
displayName: 'Team Name or ID',
|
||||||
name: 'team',
|
name: 'team',
|
||||||
|
|
Loading…
Reference in a new issue