Update piwik with the new methods
This commit is contained in:
parent
500dd61f9b
commit
a79fd13a17
|
@ -126,7 +126,7 @@ export class AppComponent implements OnInit {
|
|||
this.subscriptions.push(this.data.subscribe(data => {
|
||||
if(data && data.portal) {
|
||||
this.setProperties(data.portal);
|
||||
this.configurationService.initCommunityInformation(this.properties, this.properties.adminToolsCommunity);
|
||||
this.configurationService.initPortal(this.properties, this.properties.adminToolsCommunity);
|
||||
}
|
||||
}));
|
||||
this.subscriptions.push(this.userManagementService.getUserInfo().subscribe(user => {
|
||||
|
@ -172,7 +172,7 @@ export class AppComponent implements OnInit {
|
|||
} else {
|
||||
ConnectHelper.setPortalTypeFromPid(id);
|
||||
}
|
||||
this.configurationService.initCommunityInformation(this.properties, this.properties.adminToolsCommunity);
|
||||
this.configurationService.initPortal(this.properties, this.properties.adminToolsCommunity);
|
||||
}
|
||||
|
||||
public get open() {
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 8d8eda416b4873c50f689db54444f135396db56d
|
||||
Subproject commit 5645deec97d1bd3cb35cec792ac8dc963c0f4d8a
|
|
@ -133,7 +133,7 @@ export class StatsComponent implements OnInit {
|
|||
this._router.navigate(['/user-info'], { queryParams: { "errorCode": LoginErrorCodes.NOT_VALID, "redirectUrl": this._router.url} });
|
||||
} else {
|
||||
//console.log(`calling ${this.properties.adminToolsAPIURL}/communityFull/${this.communityId}`);
|
||||
this.configService.communityInformationState.subscribe(
|
||||
this.configService.portalAsObservable.subscribe(
|
||||
res => {
|
||||
console.debug(res);
|
||||
if(res) {
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 39cb4e56d0320975fbd08fb5e9c68b87b0c82a10
|
||||
Subproject commit 2fd57843f85125e54adfb95b35776755037ea359
|
|
@ -1 +1 @@
|
|||
Subproject commit 1e06310b8b2b56f131754eaded615b6cf32c5848
|
||||
Subproject commit 2fffe0fa672adcf5577461d10c30e34b00308c85
|
Loading…
Reference in New Issue