n8n/packages/nodes-base/nodes/Mattermost/v1/actions/channel/index.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

88 lines
1.8 KiB
TypeScript

import * as create from './create';
import * as del from './del';
import * as members from './members';
import * as restore from './restore';
import * as addUser from './addUser';
import * as statistics from './statistics';
import * as search from './search';
import { INodeProperties } from 'n8n-workflow';
export {
create,
del as delete,
members,
restore,
addUser,
statistics,
search,
};
export const descriptions: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'channel',
],
},
},
options: [
{
name: 'Add User',
value: 'addUser',
description: 'Add a user to a channel',
action: 'Add a user to a channel',
},
{
name: 'Create',
value: 'create',
description: 'Create a new channel',
action: 'Create a channel',
},
{
name: 'Delete',
value: 'delete',
description: 'Soft delete a channel',
action: 'Delete a channel',
},
{
name: 'Member',
value: 'members',
description: 'Get a page of members for a channel',
action: 'Get a page of members for a channel',
},
{
name: 'Restore',
value: 'restore',
description: 'Restores a soft deleted channel',
action: 'Restore a soft-deleted channel',
},
{
name: 'Search',
value: 'search',
description: 'Search for a channel',
action: 'Search for a channel',
},
{
name: 'Statistics',
value: 'statistics',
description: 'Get statistics for a channel',
action: 'Get statistics for a channel',
},
],
default: 'create',
},
...create.description,
...del.description,
...members.description,
...restore.description,
...addUser.description,
...statistics.description,
...search.description,
];