🐛 Fix conversion bug

This commit is contained in:
Andreas Dinauer 2026-05-01 16:18:03 +02:00
parent 5dea569bd8
commit 84a5897855

View File

@ -25,6 +25,7 @@ public class ArtifactResource
@RestClient
UserClient userClient;
@Inject
ResponseEnhancementService responseEnhancementService;
@ -53,14 +54,4 @@ public class ArtifactResource
{
return responseEnhancementService.enhance(artifactRepo.listAll());
}
private Map<String, User> getAccounts(List<ArtifactId> artifactIds)
{
List<String> ids = new ArrayList<>();
for (ArtifactId artifactId : artifactIds)
{
System.out.println("Skip setting user. Needs to be implemented");
}
return userClient.get(ids);
}
}