[plugins-functionality | WIP]

This commit is contained in:
argirok 2024-03-15 20:19:31 +02:00
parent cfb4d3bc2b
commit 44d626d867
1 changed files with 2 additions and 2 deletions

View File

@ -100,11 +100,11 @@ export class CommunityComponent {
getPagePlugins() {
this.showLoading = true;
this.subscriptions.push(this._pluginsService.getPluginTemplatesByPage(this.properties.adminToolsAPIURL, this.community.communityId, "60be1e6832035404d85fdd7e").subscribe(
this.subscriptions.push(this._pluginsService.getPluginTemplatesByPageRoute(this.properties.adminToolsAPIURL, this.community.communityId, this._router.url ).subscribe(
templates => {
this.pluginTemplates = templates;
this.subscriptions.push(this._pluginsService.getPluginsByPage(this.properties.adminToolsAPIURL, this.community.communityId, "60be1e6832035404d85fdd7e").subscribe(
this.subscriptions.push(this._pluginsService.getPluginsByPageRoute(this.properties.adminToolsAPIURL, this.community.communityId, this._router.url).subscribe(
plugins => {
this.plugins = plugins;
this.pluginsByPlacement = new Map();