🔀 Merge branch 'feature/microsoft-one-drive' of https://github.com/RicardoE105/n8n into RicardoE105-feature/microsoft-one-drive

This commit is contained in:
Jan Oberhauser
2020-03-29 19:14:16 +02:00
7 changed files with 781 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MicrosoftOneDriveOAuth2Api implements ICredentialType {
name = 'microsoftOneDriveOAuth2Api';
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 Files.ReadWrite.All',
},
];
}