@codetectonics/mantle 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/codetectonics-mantle.umd.js +2 -2
- package/bundles/codetectonics-mantle.umd.js.map +1 -1
- package/esm2015/lib/services/web-api.service.js +2 -2
- package/esm2015/lib/services/websocket.service.js +2 -2
- package/fesm2015/codetectonics-mantle.js +2 -2
- package/fesm2015/codetectonics-mantle.js.map +1 -1
- package/package.json +1 -1
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
this.environment = environment;
|
|
377
377
|
this.http = http;
|
|
378
378
|
this.angularTokenService = angularTokenService;
|
|
379
|
-
this.apiUrl = this.environment.
|
|
379
|
+
this.apiUrl = this.environment.API_URL;
|
|
380
380
|
}
|
|
381
381
|
WebApiService.prototype.get = function (path, params, headers) {
|
|
382
382
|
if (params === void 0) { params = {}; }
|
|
@@ -6306,7 +6306,7 @@
|
|
|
6306
6306
|
function WebsocketService(environment, angularTokenService) {
|
|
6307
6307
|
this.environment = environment;
|
|
6308
6308
|
this.angularTokenService = angularTokenService;
|
|
6309
|
-
this.wsUrl = this.environment.
|
|
6309
|
+
this.wsUrl = this.environment.WS_URL;
|
|
6310
6310
|
}
|
|
6311
6311
|
WebsocketService.prototype.connect = function () {
|
|
6312
6312
|
var currentAuthData = this.angularTokenService.currentAuthData;
|