Browse Source

Merge branch 'develop' of gitadmin/tuoheng_oidc into release

tags/v2.4.1
xuziqing 1 year ago
parent
commit
f2b2e4002e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tuoheng_oidc_admin/src/main/java/com/tuoheng/service/impl/TenantServiceImpl.java

+ 1
- 1
tuoheng_oidc_admin/src/main/java/com/tuoheng/service/impl/TenantServiceImpl.java View File

@@ -624,7 +624,7 @@ public class TenantServiceImpl implements TenantService {
log.info("业务系统新增租户成功");
//原有集合
List<ClientRoleDto> clientRoleDtos = getClientRoleDtos(dto.getClientRoleDtoList());
List<ClientRoleDto> finalClientRoleDtoList = clientRoleDtoList;
List<ClientRoleDto> finalClientRoleDtoList = getClientRoleDtos(clientRoleDtoList);
clientRoleDtos= clientRoleDtos.stream().filter(t -> !finalClientRoleDtoList.contains(t)).collect(Collectors.toList());

List<AuthoritiesPo> authoritiesPos = new ArrayList<>();

Loading…
Cancel
Save