|
@@ -94,8 +94,8 @@ public class SysUserController {
|
|
|
@RequiresRoles(value = {"sys_admin"}, logical = Logical.OR)
|
|
|
@WebControllerLog(description = "用户管理-授权项目",addDb = true)
|
|
|
@ApiOperation(value = "授权项目")
|
|
|
- @GetMapping("/auth/{projectIds}/{userId}")
|
|
|
- public Result authProject(@PathVariable String projectIds, @PathVariable String userId) {
|
|
|
+ @GetMapping("/auth/{userId}")
|
|
|
+ public Result authProject(String projectIds, @PathVariable String userId) {
|
|
|
return userService.authProject(projectIds, userId);
|
|
|
}
|
|
|
|