Expose deep flag

This commit is contained in:
Fabio Sinibaldi 2022-10-27 17:18:33 +02:00
parent aacf723ba9
commit 6d67280f7c
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ public class ProjectAccessImpl implements ProjectAccess {
}
@Override
public List<RelationshipNavigationObject> getRelations(String ucid, String id, String relation) throws InvalidUserRoleException, RegistrationException, ProjectNotFoundException, ConfigurationException, UnauthorizedAccess {
return getRelationshipChain(ucid,id,relation,true);
public List<RelationshipNavigationObject> getRelations(String ucid, String id, String relation, Boolean deep) throws InvalidUserRoleException, RegistrationException, ProjectNotFoundException, ConfigurationException, UnauthorizedAccess {
return getRelationshipChain(ucid,id,relation,deep);
}