fix_增加项目成员访问的权限

This commit is contained in:
wxg0103 2021-11-12 18:52:21 +08:00 committed by 刘瑞斌
parent 7b8c2df7d6
commit eb49bf5a43
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public class GroupController {
private GroupService groupService;
@PostMapping("/get/{goPage}/{pageSize}")
@RequiresPermissions(value= {PermissionConstants.SYSTEM_GROUP_READ}, logical = Logical.OR)
@RequiresPermissions(value= {PermissionConstants.SYSTEM_GROUP_READ,PermissionConstants.PROJECT_GROUP_READ}, logical = Logical.OR)
public Pager<List<GroupDTO>> getGroupList(@PathVariable int goPage, @PathVariable int pageSize, @RequestBody EditGroupRequest request) {
request.setGoPage(goPage);
request.setPageSize(pageSize);