Skip to content

Commit

Permalink
fix(项目设置): 项目列表查看权限重置
Browse files Browse the repository at this point in the history
  • Loading branch information
song-tianyang authored and Somebody-JIAN committed Jun 20, 2023
1 parent 14dbceb commit 632aa2e
Showing 1 changed file with 0 additions and 1 deletion.
Expand Up @@ -83,7 +83,6 @@ public Project addProject(@RequestBody AddProjectRequest project, HttpServletReq
}

@PostMapping("/list/{goPage}/{pageSize}")
@RequiresPermissions(PermissionConstants.WORKSPACE_PROJECT_MANAGER_READ)
public Pager<List<ProjectDTO>> getProjectList(@PathVariable int goPage, @PathVariable int pageSize, @RequestBody ProjectRequest request) {
Page<Object> page = PageHelper.startPage(goPage, pageSize, true);
return PageUtils.setPageInfo(page, projectService.getProjectList(request));
Expand Down

0 comments on commit 632aa2e

Please sign in to comment.