mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
[N8N-4995](https://linear.app/n8n/issue/N8N-4995) --------- Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
30 lines
560 B
TypeScript
30 lines
560 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
import * as getAll from './getAll.operation';
|
|
|
|
export { getAll };
|
|
|
|
export const description: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['folderMessage'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Get Many',
|
|
value: 'getAll',
|
|
description: 'Retrieves the messages in a folder',
|
|
action: 'Get many folder messages',
|
|
},
|
|
],
|
|
default: 'getAll',
|
|
},
|
|
|
|
...getAll.description,
|
|
];
|