diff --git a/backend/src/main/java/io/metersphere/controller/GroupController.java b/backend/src/main/java/io/metersphere/controller/GroupController.java index 86c9c07f0591..470a4660d87a 100644 --- a/backend/src/main/java/io/metersphere/controller/GroupController.java +++ b/backend/src/main/java/io/metersphere/controller/GroupController.java @@ -147,6 +147,7 @@ public Pager> getCurrentProjectGroupUser(@PathVariable int goPage, @P } @GetMapping("/rm/{userId}/{groupId}") + @RequiresPermissions(value = {PermissionConstants.PROJECT_GROUP_READ_DELETE, PermissionConstants.SYSTEM_GROUP_READ_DELETE}, logical = Logical.OR) public void removeGroupMember(@PathVariable String userId, @PathVariable String groupId) { groupService.removeGroupMember(userId, groupId); }