mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Add MS Graph Security node (#2307)
* ✨ Create MS Graph Security node * ⚡ General update * 📦 Update package-lock.json * 👕 Fix lint * 🔥 Remove Reviewed field * ⚡ Set max limit to 1000 * ⚡ Add limit to 1000 to second resource
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class MicrosoftGraphSecurityOAuth2Api implements ICredentialType {
|
||||
name = 'microsoftGraphSecurityOAuth2Api';
|
||||
displayName = 'Microsoft Graph Security OAuth2 API';
|
||||
extends = [
|
||||
'microsoftOAuth2Api',
|
||||
];
|
||||
documentationUrl = 'microsoft';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Scope',
|
||||
name: 'scope',
|
||||
type: 'hidden',
|
||||
default: 'SecurityEvents.ReadWrite.All',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user