mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(Microsoft SharePoint Node): Add back the support for cred only node (#15806)
This commit is contained in:
@@ -1,14 +1,25 @@
|
||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
import type { Icon, ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export class MicrosoftSharePointOAuth2Api implements ICredentialType {
|
||||
name = 'microsoftSharePointOAuth2Api';
|
||||
|
||||
extends = ['microsoftOAuth2Api'];
|
||||
|
||||
icon: Icon = {
|
||||
light: 'file:icons/microsoftSharePoint.svg',
|
||||
dark: 'file:icons/microsoftSharePoint.svg',
|
||||
};
|
||||
|
||||
displayName = 'Microsoft SharePoint OAuth2 API';
|
||||
|
||||
documentationUrl = 'microsoft';
|
||||
|
||||
httpRequestNode = {
|
||||
name: 'Microsoft SharePoint',
|
||||
docsUrl: 'https://learn.microsoft.com/en-us/sharepoint/dev/apis/sharepoint-rest-graph',
|
||||
apiBaseUrlPlaceholder: 'https://{subdomain}.sharepoint.com/_api/v2.0/',
|
||||
};
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Scope',
|
||||
|
||||
Reference in New Issue
Block a user