mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
🐛 Fix issue that Gitlab OAuth did not use specified server #1243
This commit is contained in:
parent
d5da7865b9
commit
e981118316
|
@ -22,14 +22,14 @@ export class GitlabOAuth2Api implements ICredentialType {
|
|||
displayName: 'Authorization URL',
|
||||
name: 'authUrl',
|
||||
type: 'hidden' as NodePropertyTypes,
|
||||
default: 'https://gitlab.com/oauth/authorize',
|
||||
default: '={{$parameter["server"]}}/oauth/authorize',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Access Token URL',
|
||||
name: 'accessTokenUrl',
|
||||
type: 'hidden' as NodePropertyTypes,
|
||||
default: 'https://gitlab.com/oauth/token',
|
||||
default: '={{$parameter["server"]}}/oauth/token',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue