n8n/packages/nodes-base/credentials/MicrosoftOneDriveOAuth2Api.credentials.ts

23 lines
563 B
TypeScript
Raw Normal View History

2020-03-22 12:43:35 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MicrosoftOneDriveOAuth2Api implements ICredentialType {
name = 'microsoftOneDriveOAuth2Api';
extends = [
'microsoftOAuth2Api',
];
displayName = 'Microsoft Drive OAuth2 API';
documentationUrl = 'microsoft';
2020-03-22 12:43:35 -07:00
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',
},
];
}