mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
⚡ Small improvements
This commit is contained in:
parent
c39ae514ee
commit
eaa84827c7
|
@ -6,22 +6,10 @@ import {
|
||||||
export class MicrosoftExcelOAuth2Api implements ICredentialType {
|
export class MicrosoftExcelOAuth2Api implements ICredentialType {
|
||||||
name = 'microsoftExcelOAuth2Api';
|
name = 'microsoftExcelOAuth2Api';
|
||||||
extends = [
|
extends = [
|
||||||
'oAuth2Api',
|
'microsoftOAuth2Api',
|
||||||
];
|
];
|
||||||
displayName = 'Microsoft OAuth2 API';
|
displayName = 'Microsoft OAuth2 API';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
|
||||||
displayName: 'Authorization URL',
|
|
||||||
name: 'authUrl',
|
|
||||||
type: 'string' as NodePropertyTypes,
|
|
||||||
default: 'https://login.microsoftonline.com/{yourtenantid}/oauth2/v2.0/authorize',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'Access Token URL',
|
|
||||||
name: 'accessTokenUrl',
|
|
||||||
type: 'string' as NodePropertyTypes,
|
|
||||||
default: 'https://login.microsoftonline.com/{yourtenantid}/oauth2/v2.0/token',
|
|
||||||
},
|
|
||||||
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
|
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
|
||||||
{
|
{
|
||||||
displayName: 'Scope',
|
displayName: 'Scope',
|
||||||
|
@ -29,17 +17,5 @@ export class MicrosoftExcelOAuth2Api implements ICredentialType {
|
||||||
type: 'hidden' as NodePropertyTypes,
|
type: 'hidden' as NodePropertyTypes,
|
||||||
default: 'openid offline_access Files.ReadWrite',
|
default: 'openid offline_access Files.ReadWrite',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
displayName: 'Auth URI Query Parameters',
|
|
||||||
name: 'authQueryParameters',
|
|
||||||
type: 'hidden' as NodePropertyTypes,
|
|
||||||
default: 'response_mode=query',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'Authentication',
|
|
||||||
name: 'authentication',
|
|
||||||
type: 'hidden' as NodePropertyTypes,
|
|
||||||
default: 'body',
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
import {
|
||||||
|
ICredentialType,
|
||||||
|
NodePropertyTypes,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
export class MicrosoftOAuth2Api implements ICredentialType {
|
||||||
|
name = 'microsoftOAuth2Api';
|
||||||
|
extends = [
|
||||||
|
'oAuth2Api',
|
||||||
|
];
|
||||||
|
displayName = 'Microsoft OAuth2 API';
|
||||||
|
properties = [
|
||||||
|
{
|
||||||
|
displayName: 'Authorization URL',
|
||||||
|
name: 'authUrl',
|
||||||
|
type: 'string' as NodePropertyTypes,
|
||||||
|
default: 'https://login.microsoftonline.com/{yourtenantid}/oauth2/v2.0/authorize',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Access Token URL',
|
||||||
|
name: 'accessTokenUrl',
|
||||||
|
type: 'string' as NodePropertyTypes,
|
||||||
|
default: 'https://login.microsoftonline.com/{yourtenantid}/oauth2/v2.0/token',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Auth URI Query Parameters',
|
||||||
|
name: 'authQueryParameters',
|
||||||
|
type: 'hidden' as NodePropertyTypes,
|
||||||
|
default: 'response_mode=query',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Authentication',
|
||||||
|
name: 'authentication',
|
||||||
|
type: 'hidden' as NodePropertyTypes,
|
||||||
|
default: 'body',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
|
@ -56,6 +56,7 @@
|
||||||
"dist/credentials/MailgunApi.credentials.js",
|
"dist/credentials/MailgunApi.credentials.js",
|
||||||
"dist/credentials/MandrillApi.credentials.js",
|
"dist/credentials/MandrillApi.credentials.js",
|
||||||
"dist/credentials/MattermostApi.credentials.js",
|
"dist/credentials/MattermostApi.credentials.js",
|
||||||
|
"dist/credentials/MicrosoftOAuth2Api.credentials.js",
|
||||||
"dist/credentials/MicrosoftExcelOAuth2Api.credentials.js",
|
"dist/credentials/MicrosoftExcelOAuth2Api.credentials.js",
|
||||||
"dist/credentials/MongoDb.credentials.js",
|
"dist/credentials/MongoDb.credentials.js",
|
||||||
"dist/credentials/MySql.credentials.js",
|
"dist/credentials/MySql.credentials.js",
|
||||||
|
|
Loading…
Reference in a new issue