feat(n8n Microsoft Teams Node): New trigger node (#12875)

This commit is contained in:
Stanimira Rikova
2025-05-15 14:03:00 +03:00
committed by GitHub
parent ab1047ebde
commit 870940b543
9 changed files with 1043 additions and 3 deletions

View File

@@ -17,5 +17,18 @@ export class MicrosoftTeamsOAuth2Api implements ICredentialType {
type: 'hidden',
default: 'openid offline_access User.ReadWrite.All Group.ReadWrite.All Chat.ReadWrite',
},
{
displayName: `
Microsoft Teams Trigger requires the following permissions:
<br><code>ChannelMessage.Read.All</code>
<br><code>Chat.Read.All</code>
<br><code>Team.ReadBasic.All</code>
<br><code>Subscription.ReadWrite.All</code>
<br>Configure these permissions in <a href="https://portal.azure.com">Microsoft Entra</a>
`,
name: 'notice',
type: 'notice',
default: '',
},
];
}