mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
23 lines
572 B
TypeScript
23 lines
572 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',
|
|
},
|
|
];
|
|
}
|