Merge pull request 'check if CouId is null' (#2) from develop into master

Reviewed-on: #2
This commit is contained in:
Konstantinos Spyrou 2023-01-19 14:40:37 +01:00
commit aeca9ce38b
1 changed files with 3 additions and 1 deletions

View File

@ -142,7 +142,9 @@ public class AuthorizationServiceImpl implements AuthorizationService {
int coPersonId = aaiRegistryService.getCoPersonIdByEmail(email);
List<Integer> list = new ArrayList<>();
for (JsonElement element : aaiRegistryService.getRolesWithStatus(coPersonId, AaiRegistryService.RoleStatus.ACTIVE)) {
list.add(element.getAsJsonObject().get("CouId").getAsInt());
if (element.getAsJsonObject().get("CouId") != null) {
list.add(element.getAsJsonObject().get("CouId").getAsInt());
}
}
return aaiRegistryService.getCouNames(list).values();
}