mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
984f62df9e
* ✨ Add chat messages to MS Teams node * Updated credentials to include missing scope * ⚡ Small improvements Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
23 lines
587 B
TypeScript
23 lines
587 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class MicrosoftTeamsOAuth2Api implements ICredentialType {
|
|
name = 'microsoftTeamsOAuth2Api';
|
|
extends = [
|
|
'microsoftOAuth2Api',
|
|
];
|
|
displayName = 'Microsoft Teams OAuth2 API';
|
|
documentationUrl = 'microsoft';
|
|
properties: INodeProperties[] = [
|
|
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'hidden',
|
|
default: 'openid offline_access User.ReadWrite.All Group.ReadWrite.All Chat.ReadWrite',
|
|
},
|
|
];
|
|
}
|