Is there a way to find project/team areas a user is admin of
Using the java api, I can find all areas a user is a member of. However, the call doesn't return areas the user is only an administrator of.
I want to remove a user from all areas when I archive a user.
This call returns the areas the user is a member of:
I want to remove a user from all areas when I archive a user.
This call returns the areas the user is a member of:
IProcessItemService service= (IProcessItemService) repo.getClientLibrary(IProcessItemService.class);
List<?> projects;
try {
projects = service.findProcessAreas(user, null, IProcessClientService.ALL_PROPERTIES, monitor);
}catch (TeamRepositoryException e)