Skip to content

Commit

Permalink
修复角色机构权限bug: elunez#801
Browse files Browse the repository at this point in the history
  • Loading branch information
elunez committed Jul 4, 2023
1 parent 4734503 commit 4f31a0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public List<Long> getDeptIds(UserDto user) {
deptIds.addAll(getCustomize(deptIds, role));
break;
default:
return new ArrayList<>(deptIds);
return new ArrayList<>();
}
}
return new ArrayList<>(deptIds);
Expand Down

0 comments on commit 4f31a0a

Please sign in to comment.