summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/PermissionModuleEdit.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/PermissionModuleEdit.vue')
-rw-r--r--webapp/src/components/PermissionModuleEdit.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/PermissionModuleEdit.vue b/webapp/src/components/PermissionModuleEdit.vue
index 85102b5..198bacf 100644
--- a/webapp/src/components/PermissionModuleEdit.vue
+++ b/webapp/src/components/PermissionModuleEdit.vue
@@ -205,7 +205,7 @@ export default {
},
async loadChilds () {
if (this.groups.length > 0) {
- var response = await this.$http.post('/api/events/blacklist', { groups: this.groups })
+ var response = await this.$http.post('/api/roles/getChilds', { groups: this.groups })
this.blacklistList = response.data.subgroups
this.blacklist = this.blacklist.filter(g => this.blacklistList.map(x => x.id).indexOf(g.id) !== -1)
} else {