mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
72 lines
1.1 KiB
TypeScript
72 lines
1.1 KiB
TypeScript
|
import {
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export const userOperations = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
default: 'get',
|
||
|
description: 'Operation to perform',
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Get',
|
||
|
value: 'get',
|
||
|
},
|
||
|
],
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
] as INodeProperties[];
|
||
|
|
||
|
export const userFields = [
|
||
|
// ----------------------------------
|
||
|
// user: get
|
||
|
// ----------------------------------
|
||
|
{
|
||
|
displayName: 'Self',
|
||
|
name: 'self',
|
||
|
type: 'boolean',
|
||
|
default: true,
|
||
|
required: true,
|
||
|
description: 'Whether to return details on the logged-in user.',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'User ID',
|
||
|
name: 'userId',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
required: true,
|
||
|
description: 'The ID of the user to retrieve.',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
self: [
|
||
|
false,
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
] as INodeProperties[];
|