n8n/packages/nodes-base/nodes/Discourse/UserGroupDescription.ts
Iván Ovejero 6f95121fac
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
2022-07-10 23:50:51 +03:00

120 lines
2.3 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const userGroupOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
description: 'Choose an operation',
required: true,
displayOptions: {
show: {
resource: [
'userGroup',
],
},
},
options: [
{
name: 'Add',
value: 'add',
description: 'Create a user to group',
action: 'Add a user to a group',
},
{
name: 'Remove',
value: 'remove',
description: 'Remove user from group',
action: 'Remove a user from a group',
},
],
default: 'add',
},
];
export const userGroupFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* userGroup:add */
/* -------------------------------------------------------------------------- */
{
displayName: 'Usernames',
name: 'usernames',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'userGroup',
],
operation: [
'add',
],
},
},
default: '',
description: 'Usernames to add to group. Multiples can be defined separated by comma.',
},
{
displayName: 'Group ID',
name: 'groupId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'userGroup',
],
operation: [
'add',
],
},
},
default: '',
description: 'ID of the group',
},
/* -------------------------------------------------------------------------- */
/* userGroup:remove */
/* -------------------------------------------------------------------------- */
{
displayName: 'Usernames',
name: 'usernames',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'userGroup',
],
operation: [
'remove',
],
},
},
default: '',
description: 'Usernames to remove from group. Multiples can be defined separated by comma.',
},
{
displayName: 'Group ID',
name: 'groupId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'userGroup',
],
operation: [
'remove',
],
},
},
default: '',
description: 'ID of the group to remove',
},
];