feat(Microsoft Teams Node): Overhaul (#7477)

Co-authored-by: Giulio Andreini <andreini@netseven.it>
This commit is contained in:
Michael Kret
2024-01-22 18:35:09 +02:00
committed by GitHub
parent 44f6ef2ed7
commit 2c146cca62
68 changed files with 6284 additions and 664 deletions

View File

@@ -0,0 +1,22 @@
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',
},
],
};