feat: enable websocket connection

This commit is contained in:
Antonella Sgarlatta 2021-10-04 17:10:20 -03:00
parent 3867f625f1
commit 3cba208b07
No known key found for this signature in database
GPG key ID: 356A437CE85F9337
2 changed files with 3 additions and 0 deletions

View file

@ -55,6 +55,7 @@ export class WebApplication extends SNApplication {
scope: angular.IScope,
defaultSyncServerHost: string,
public bridge: Bridge,
webSocketUrl: string,
) {
super(
bridge.environment,
@ -67,6 +68,7 @@ export class WebApplication extends SNApplication {
defaultSyncServerHost,
AppVersion,
isDev,
webSocketUrl,
);
this.$compile = $compile;
this.scope = scope;

View file

@ -64,6 +64,7 @@ export class ApplicationGroup extends SNApplicationGroup {
scope,
this.defaultSyncServerHost,
this.bridge,
this.webSocketUrl,
);
const appState = new AppState(
this.$rootScope,