Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
Fix authKey property casing (#2176)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Favretto authored and lauren-mills committed Aug 28, 2019
1 parent 8b15cf2 commit 92f2822
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lib/typescript/botbuilder-solutions/src/botSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export interface IContentModeratorConfiguration {
}

export interface ICosmosDbConfiguration {
authkey: string;
authKey: string;
collectionId: string;
cosmosDBEndpoint: string;
databaseId: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"container": ""
},
"cosmosDb": {
"authkey": "",
"authKey": "",
"collectionId": "",
"cosmosDBEndpoint": "",
"databaseId": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ if (botSettings.cosmosDb === undefined) {
throw new Error();
}
cosmosDbStorageSettings = {
authKey: botSettings.cosmosDb.authkey,
authKey: botSettings.cosmosDb.authKey,
collectionId: botSettings.cosmosDb.collectionId,
databaseId: botSettings.cosmosDb.databaseId,
serviceEndpoint: botSettings.cosmosDb.cosmosDBEndpoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"container": "transcripts"
},
"cosmosDb": {
"authkey": "<--MOCK-VALUE-->",
"authKey": "<--MOCK-VALUE-->",
"collectionId": "botstate-collection",
"cosmosDBEndpoint": "https://assistant.documents.azure.com:443/",
"databaseId": "botstate-db"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"container": ""
},
"cosmosDb": {
"authkey": "",
"authKey": "",
"collectionId": "",
"cosmosDBEndpoint": "",
"databaseId": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if (botSettings.cosmosDb === undefined) {
}

cosmosDbStorageSettings = {
authKey: botSettings.cosmosDb.authkey,
authKey: botSettings.cosmosDb.authKey,
collectionId: botSettings.cosmosDb.collectionId,
databaseId: botSettings.cosmosDb.databaseId,
serviceEndpoint: botSettings.cosmosDb.cosmosDBEndpoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"container": "transcripts"
},
"cosmosDb": {
"authkey": "<--MOCK-VALUE-->",
"authKey": "<--MOCK-VALUE-->",
"collectionId": "botstate-collection",
"cosmosDBEndpoint": "https://skill-endpoint.documents.azure.com:443/",
"databaseId": "botstate-db"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"container": ""
},
"cosmosDb": {
"authkey": "",
"authKey": "",
"collectionId": "",
"cosmosDBEndpoint": "",
"databaseId": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ if (botSettings.cosmosDb === undefined) {
throw new Error();
}
cosmosDbStorageSettings = {
authKey: botSettings.cosmosDb.authkey,
authKey: botSettings.cosmosDb.authKey,
collectionId: botSettings.cosmosDb.collectionId,
databaseId: botSettings.cosmosDb.databaseId,
serviceEndpoint: botSettings.cosmosDb.cosmosDBEndpoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"container": "transcripts"
},
"cosmosDb": {
"authkey": "<--MOCK-VALUE-->",
"authKey": "<--MOCK-VALUE-->",
"collectionId": "botstate-collection",
"cosmosDBEndpoint": "https://assistant.documents.azure.com:443/",
"databaseId": "botstate-db"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"container": ""
},
"cosmosDb": {
"authkey": "",
"authKey": "",
"collectionId": "",
"cosmosDBEndpoint": "",
"databaseId": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if (botSettings.cosmosDb === undefined) {
}

cosmosDbStorageSettings = {
authKey: botSettings.cosmosDb.authkey,
authKey: botSettings.cosmosDb.authKey,
collectionId: botSettings.cosmosDb.collectionId,
databaseId: botSettings.cosmosDb.databaseId,
serviceEndpoint: botSettings.cosmosDb.cosmosDBEndpoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"container": "transcripts"
},
"cosmosDb": {
"authkey": "<--MOCK-VALUE-->",
"authKey": "<--MOCK-VALUE-->",
"collectionId": "botstate-collection",
"cosmosDBEndpoint": "https://skill-endpoint.documents.azure.com:443/",
"databaseId": "botstate-db"
Expand Down

0 comments on commit 92f2822

Please sign in to comment.