n8n/packages/nodes-base/nodes/UProc/GroupDescription.ts

35 lines
701 B
TypeScript
Raw Normal View History

import {
INodeProperties,
2021-02-25 01:35:48 -08:00
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 = [];
2021-02-25 01:35:48 -08:00
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[];