fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
2 changed files with 13 additions and 0 deletions
Showing only changes of commit 646fb4a1fa - Show all commits

View file

@ -100,6 +100,7 @@ export class StartDialog {
} }
// Prepares the first instance on bot farm. // Prepares the first instance on bot farm.
const instance = <IGBInstance>{}; const instance = <IGBInstance>{};
instance.botId = botId; instance.botId = botId;

View file

@ -357,6 +357,18 @@ export class AzureDeployerService implements IGBInstallationDeployer {
credentials: any, credentials: any,
subscriptionId: string subscriptionId: string
): Promise<IGBInstance> { ): Promise<IGBInstance> {
return await this.deployFarm2(proxyAddress,
instance,
credentials,
subscriptionId);
}
public async deployFarm2(
proxyAddress: string,
instance: IGBInstance,
credentials: any,
subscriptionId: string
){
const culture = 'en-us'; const culture = 'en-us';
const token = credentials['tokenCache']._entries[0]; const token = credentials['tokenCache']._entries[0];