mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 23:24:06 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
71 lines
1.5 KiB
TypeScript
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 type { 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 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: 'Get Many',
|
|
value: 'getAll',
|
|
description: 'Retrieve many users',
|
|
action: 'Get many users',
|
|
},
|
|
{
|
|
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,
|
|
];
|