change hosts url

This commit is contained in:
Eugenio Romano
2016-08-22 16:59:28 +01:00
parent 76915365b6
commit a6d0f0d7fa

View File

@@ -41,12 +41,12 @@ export class AlfrescoAuthenticationService {
hostBpm: this.alfrescoSetting.bpmHost
});
alfrescoSetting.bpmHostSubject.subscribe((value) => {
this.alfrescoApi.config.hostBpm = value;
alfrescoSetting.bpmHostSubject.subscribe((ecmHost) => {
this.alfrescoApi.config.changeEcmHost(ecmHost);
});
alfrescoSetting.ecmHostSubject.subscribe((value) => {
this.alfrescoApi.config.hostEcm = value;
alfrescoSetting.ecmHostSubject.subscribe((bpmHost) => {
this.alfrescoApi.config.changeBpmHost(bpmHost);
});
alfrescoSetting.providerSubject.subscribe((value) => {