Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Aws/IAM/descriptions/user/addToGroup.operation.ts
Stanimira Rikova ab1047ebde feat(AWS IAM Node): Add new AWS IAM Node (#11963)
Co-authored-by: Adina Totorean <adinatotorean99@gmail.com>
2025-05-15 11:59:19 +01:00

25 lines
554 B
TypeScript

import type { INodeProperties } from 'n8n-workflow';
import { updateDisplayOptions } from 'n8n-workflow';
import { groupLocator, userLocator } from '../common';
const properties: INodeProperties[] = [
{
...userLocator,
description: 'Select the user you want to add to the group',
},
{
...groupLocator,
description: 'Select the group you want to add the user to',
},
];
const displayOptions = {
show: {
resource: ['user'],
operation: ['addToGroup'],
},
};
export const description = updateDisplayOptions(displayOptions, properties);