mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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:
@@ -68,21 +68,25 @@ export class Disqus implements INodeType {
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Return forum details',
|
||||
action: 'Get a forum',
|
||||
},
|
||||
{
|
||||
name: 'Get All Categories',
|
||||
value: 'getCategories',
|
||||
description: 'Return a list of categories within a forum',
|
||||
action: 'Get all categories in a forum',
|
||||
},
|
||||
{
|
||||
name: 'Get All Threads',
|
||||
value: 'getThreads',
|
||||
description: 'Return a list of threads within a forum',
|
||||
action: 'Get all threads in a forum',
|
||||
},
|
||||
{
|
||||
name: 'Get All Posts',
|
||||
value: 'getPosts',
|
||||
description: 'Return a list of posts within a forum',
|
||||
action: 'Get all posts in a forum',
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
|
||||
Reference in New Issue
Block a user