Add Microsoft Teams Node (#931)

*  Microsoft Team node

*  Small fix

*  Small improvements

*  Small improvements

*  Small fix

*  Small improvements
This commit is contained in:
Ricardo Espinoza
2020-09-13 05:08:43 -04:00
committed by GitHub
parent 542e772e0c
commit 38ddcbe703
8 changed files with 924 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MicrosoftTeamsOAuth2Api implements ICredentialType {
name = 'microsoftTeamsOAuth2Api';
extends = [
'microsoftOAuth2Api',
];
displayName = 'Microsoft OAuth2 API';
properties = [
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
{
displayName: 'Scope',
name: 'scope',
type: 'hidden' as NodePropertyTypes,
default: 'openid offline_access User.ReadWrite.All Group.ReadWrite.All',
},
];
}