mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Simplify Mautic OAuth credentials
This commit is contained in:
parent
1dedb3f4b8
commit
0db307186e
|
@ -21,17 +21,15 @@ export class MauticOAuth2Api implements ICredentialType {
|
||||||
{
|
{
|
||||||
displayName: 'Authorization URL',
|
displayName: 'Authorization URL',
|
||||||
name: 'authUrl',
|
name: 'authUrl',
|
||||||
type: 'string' as NodePropertyTypes,
|
type: 'hidden' as NodePropertyTypes,
|
||||||
default: '',
|
default: '={{$parameter["url"]}}/oauth/v2/authorize',
|
||||||
placeholder: 'https://name.mautic.net/oauth/v2/authorize',
|
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Access Token URL',
|
displayName: 'Access Token URL',
|
||||||
name: 'accessTokenUrl',
|
name: 'accessTokenUrl',
|
||||||
type: 'string' as NodePropertyTypes,
|
type: 'hidden' as NodePropertyTypes,
|
||||||
default: '',
|
default: '={{$parameter["url"]}}/oauth/v2/token',
|
||||||
placeholder: 'https://name.mautic.net/oauth/v2/token',
|
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue