Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/UProc/GroupDescription.ts
Miquel Colomer 0a0509a4ae + added new tools
2021-02-25 10:35:48 +01:00

35 lines
701 B
TypeScript

import {
INodeProperties,
IDataObject,
} from 'n8n-workflow';
import {
groups,
} from './Json/Groups';
const finalGroups = {
displayName: 'Resource',
name: 'group',
type: 'options',
default: 'communication',
description: 'The Resource to consume.',
options: [],
};
const options = [];
for(const group of (groups as IDataObject).groups as IDataObject[]){
const item = {
name: group.translated,
value: group.name,
description: 'The ' + group.translated + ' Resource allows you to get tools from this resource',
};
options.push(item);
}
//@ts-ignore
finalGroups.options = options;
const mappedGroups = [finalGroups];
export const groupOptions = mappedGroups as INodeProperties[];