Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
NaicheD committed Oct 2, 2023
1 parent 71dfc14 commit d43fa87
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ public CompletableFuture<Boolean> get(DataFetchingEnvironment environment) throw
return CompletableFuture.supplyAsync(() -> {
try {
final Urn roleUrn = roleUrnStr == null ? null : Urn.createFromString(roleUrnStr);
// TODO ndespouy A SUPPRIMER
System.out.println("roleUrnStr : " + roleUrnStr);
System.out.println("actors : ");
for (int i = 0; i < actors.size(); i++) {
System.out.println("===> " + actors.get(i));
}
System.out.println("=====> NDESPOUY <======");
_roleService.batchAssignRoleToActors(actors, roleUrn, authentication);
return true;
} catch (Exception e) {
Expand Down

0 comments on commit d43fa87

Please sign in to comment.