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

71 lines
1.5 KiB
TypeScript

import * as create from './create';
import * as deactive from './deactive';
import * as getAll from './getAll';
import * as getByEmail from './getByEmail';
import * as getById from './getById';
import * as invite from './invite';
import { INodeProperties } from 'n8n-workflow';
export { create, deactive, getAll, getByEmail, getById, invite };
export const descriptions: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['user'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a new user',
action: 'Create a user',
},
{
name: 'Deactive',
value: 'deactive',
description:
'Deactivates the user and revokes all its sessions by archiving its user object',
action: 'Deactivate a user',
},
{
name: 'Get All',
value: 'getAll',
description: 'Retrieve all users',
action: 'Get all users',
},
{
name: 'Get By Email',
value: 'getByEmail',
description: 'Get a user by email',
action: 'Get a user by email',
},
{
name: 'Get By ID',
value: 'getById',
description: 'Get a user by ID',
action: 'Get a user by ID',
},
{
name: 'Invite',
value: 'invite',
description: 'Invite user to team',
action: 'Invite a user',
},
],
default: '',
},
...create.description,
...deactive.description,
...getAll.description,
...getByEmail.description,
...getById.description,
...invite.description,
];