Skip to content

Commit bf7203c

Browse files
authored
Merge pull request #13098 from marjoriehahn/mhahn/fixgheurldisplay
[Github] Fix displaying Github enterprise URL
2 parents 91b5053 + 8b39826 commit bf7203c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Solutions/GitHub/Data Connectors/GitHubAuditLogs_CCF/GitHubAuditLogs_ConnectorDefinition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"label": "Github Enterprise URL",
100100
"placeholder": "Your Github Enterprise URL",
101101
"type": "text",
102-
"name": "apiUrl"
102+
"name": "ApiUrl"
103103
}
104104
},
105105
{

Solutions/GitHub/Data Connectors/GitHubAuditLogs_CCF/GitHubAuditLogs_PollerConfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"dataType": "GitHubAuditLogsV2_CL",
1616
"addOnAttributes": {
17-
"ApiUrl": "{{apiUrl}}"
17+
"ApiUrl": "[[parameters('ApiUrl')]"
1818
},
1919
"response": {
2020
"eventsJsonPaths": [
@@ -33,7 +33,7 @@
3333
"type": "APIKey"
3434
},
3535
"request": {
36-
"apiEndpoint": "{{apiUrl}}/audit-log?include=all",
36+
"apiEndpoint": "{{ApiUrl}}/audit-log?include=all",
3737
"rateLimitQPS": 50,
3838
"queryWindowInMin": 15,
3939
"httpMethod": "GET",

Solutions/GitHub/Package/3.1.0.zip

4 Bytes
Binary file not shown.

Solutions/GitHub/Package/mainTemplate.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3253,7 +3253,7 @@
32533253
"label": "Github Enterprise URL",
32543254
"placeholder": "Your Github Enterprise URL",
32553255
"type": "text",
3256-
"name": "apiUrl"
3256+
"name": "ApiUrl"
32573257
}
32583258
},
32593259
{
@@ -5329,7 +5329,7 @@
53295329
"label": "Github Enterprise URL",
53305330
"placeholder": "Your Github Enterprise URL",
53315331
"type": "text",
5332-
"name": "apiUrl"
5332+
"name": "ApiUrl"
53335333
}
53345334
},
53355335
{
@@ -5427,8 +5427,8 @@
54275427
},
54285428
"type": "object"
54295429
},
5430-
"apiUrl": {
5431-
"defaultValue": "apiUrl",
5430+
"ApiUrl": {
5431+
"defaultValue": "ApiUrl",
54325432
"type": "securestring",
54335433
"minLength": 1
54345434
},
@@ -5483,7 +5483,7 @@
54835483
},
54845484
"dataType": "GitHubAuditLogsV2_CL",
54855485
"addOnAttributes": {
5486-
"ApiUrl": "[[parameters('apiUrl')]"
5486+
"ApiUrl": "[[parameters('ApiUrl')]"
54875487
},
54885488
"response": {
54895489
"eventsJsonPaths": [
@@ -5502,7 +5502,7 @@
55025502
"type": "APIKey"
55035503
},
55045504
"request": {
5505-
"apiEndpoint": "[[concat(parameters('apiUrl'),'/audit-log?include=all')]",
5505+
"apiEndpoint": "[[concat(parameters('ApiUrl'),'/audit-log?include=all')]",
55065506
"rateLimitQPS": 50,
55075507
"queryWindowInMin": 15,
55085508
"httpMethod": "GET",

0 commit comments

Comments
 (0)