n8n/packages/nodes-base/nodes/Mattermost/v1/actions/channel/index.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

77 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,
];