fix(Jira Software Node): Fix issue with credential test not working correctly (#16657)

This commit is contained in:
Jon
2025-06-24 13:20:09 +01:00
committed by GitHub
parent 79eef1e347
commit bc53c21e15
3 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ export class JiraSoftwareCloudApi implements ICredentialType {
test: ICredentialTestRequest = {
request: {
baseURL: '={{$credentials?.domain}}',
url: '/rest/api/2/project',
url: '/rest/api/2/myself',
},
};
}

View File

@@ -51,7 +51,7 @@ export class JiraSoftwareServerApi implements ICredentialType {
test: ICredentialTestRequest = {
request: {
baseURL: '={{$credentials?.domain}}',
url: '/rest/api/2/project',
url: '/rest/api/2/myself',
},
};
}

View File

@@ -41,7 +41,7 @@ export class JiraSoftwareServerPatApi implements ICredentialType {
test: ICredentialTestRequest = {
request: {
baseURL: '={{$credentials?.domain}}',
url: '/rest/api/2/project',
url: '/rest/api/2/myself',
},
};
}