mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions` * 👕 Apply `node-param-operation-option-without-action` * ✏️ Fix add/remove phrasing * ✏️ Fix email template phrasing * ✏️ Fix add/remove phrasing * ✏️ Fix custom fields phrasing * ✏️ Fix job report phrasing * ✏️ Fix query phrasing * ✏️ Various phrasing fixes * ✏️ Fix final phrasings * ✏️ Remove `conversation` * ✏️ Fix plural
This commit is contained in:
@@ -118,26 +118,31 @@ export class Gitlab implements INodeType {
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a new issue',
|
||||
action: 'Create an issue',
|
||||
},
|
||||
{
|
||||
name: 'Create Comment',
|
||||
value: 'createComment',
|
||||
description: 'Create a new comment on an issue',
|
||||
action: 'Create a comment on an issue',
|
||||
},
|
||||
{
|
||||
name: 'Edit',
|
||||
value: 'edit',
|
||||
description: 'Edit an issue',
|
||||
action: 'Edit an issue',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get the data of a single issue',
|
||||
action: 'Get an issue',
|
||||
},
|
||||
{
|
||||
name: 'Lock',
|
||||
value: 'lock',
|
||||
description: 'Lock an issue',
|
||||
action: 'Lock an issue',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
@@ -160,11 +165,13 @@ export class Gitlab implements INodeType {
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get the data of a single repository',
|
||||
action: 'Get a repository',
|
||||
},
|
||||
{
|
||||
name: 'Get Issues',
|
||||
value: 'getIssues',
|
||||
description: 'Returns issues of a repository',
|
||||
action: 'Get issues of a repository',
|
||||
},
|
||||
],
|
||||
default: 'getIssues',
|
||||
@@ -187,6 +194,7 @@ export class Gitlab implements INodeType {
|
||||
name: 'Get Repositories',
|
||||
value: 'getRepositories',
|
||||
description: 'Returns the repositories of a user',
|
||||
action: 'Get a user\'s repositories',
|
||||
},
|
||||
],
|
||||
default: 'getRepositories',
|
||||
@@ -209,26 +217,31 @@ export class Gitlab implements INodeType {
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a new release',
|
||||
action: 'Create a release',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a new release',
|
||||
action: 'Delete a release',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a new release',
|
||||
action: 'Get a release',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all releases',
|
||||
action: 'Get all releases',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
description: 'Update a new release',
|
||||
action: 'Update a release',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
Reference in New Issue
Block a user