mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(core): Credentials for popular SecOps services, Part 1 (#6775)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export class MicrosoftEntraOAuth2Api implements ICredentialType {
|
||||
name = 'microsoftEntraOAuth2Api';
|
||||
|
||||
displayName = 'Microsoft Entra ID (Azure Active Directory) API';
|
||||
|
||||
extends = ['microsoftOAuth2Api'];
|
||||
|
||||
icon = 'file:icons/Azure.svg';
|
||||
|
||||
documentationUrl = 'microsoft';
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Scope',
|
||||
name: 'scope',
|
||||
type: 'hidden',
|
||||
default:
|
||||
'openid offline_access AccessReview.ReadWrite.All Directory.ReadWrite.All NetworkAccessPolicy.ReadWrite.All DelegatedAdminRelationship.ReadWrite.All EntitlementManagement.ReadWrite.All',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user