mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -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',
|
||||
name: 'authUrl',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
placeholder: 'https://name.mautic.net/oauth/v2/authorize',
|
||||
type: 'hidden' as NodePropertyTypes,
|
||||
default: '={{$parameter["url"]}}/oauth/v2/authorize',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Access Token URL',
|
||||
name: 'accessTokenUrl',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
placeholder: 'https://name.mautic.net/oauth/v2/token',
|
||||
type: 'hidden' as NodePropertyTypes,
|
||||
default: '={{$parameter["url"]}}/oauth/v2/token',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue