feat(Microsoft Entra ID Node): New node (#11779)

Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
This commit is contained in:
feelgood-interface
2025-01-08 11:49:26 +01:00
committed by GitHub
parent 52ae02abaa
commit 3006ccf41b
16 changed files with 7331 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import type { ICredentialType, INodeProperties, Icon } from 'n8n-workflow';
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class MicrosoftEntraOAuth2Api implements ICredentialType {
name = 'microsoftEntraOAuth2Api';
@@ -7,8 +7,6 @@ export class MicrosoftEntraOAuth2Api implements ICredentialType {
extends = ['microsoftOAuth2Api'];
icon: Icon = 'file:icons/Azure.svg';
documentationUrl = 'microsoftentra';
properties: INodeProperties[] = [
@@ -16,8 +14,9 @@ export class MicrosoftEntraOAuth2Api implements ICredentialType {
displayName: 'Scope',
name: 'scope',
type: 'hidden',
// Sites.FullControl.All required to update user specific properties https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/1316
default:
'openid offline_access AccessReview.ReadWrite.All Directory.ReadWrite.All NetworkAccessPolicy.ReadWrite.All DelegatedAdminRelationship.ReadWrite.All EntitlementManagement.ReadWrite.All',
'openid offline_access AccessReview.ReadWrite.All Directory.ReadWrite.All NetworkAccessPolicy.ReadWrite.All DelegatedAdminRelationship.ReadWrite.All EntitlementManagement.ReadWrite.All User.ReadWrite.All Directory.AccessAsUser.All Sites.FullControl.All GroupMember.ReadWrite.All',
},
];
}