mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 17:44:09 -08:00
23 lines
480 B
TypeScript
23 lines
480 B
TypeScript
|
import type { INodeProperties } from 'n8n-workflow';
|
||
|
|
||
|
export const groupSourceOptions: INodeProperties = {
|
||
|
displayName: 'Group Source',
|
||
|
name: 'groupSource',
|
||
|
required: true,
|
||
|
type: 'options',
|
||
|
default: 'all',
|
||
|
description: 'From where to select groups and teams',
|
||
|
options: [
|
||
|
{
|
||
|
name: 'All Groups',
|
||
|
value: 'all',
|
||
|
description: 'From all groups',
|
||
|
},
|
||
|
{
|
||
|
name: 'My Groups',
|
||
|
value: 'mine',
|
||
|
description: 'Only load groups that account is member of',
|
||
|
},
|
||
|
],
|
||
|
};
|