Skip to content
Snippets Groups Projects
Commit 95811c5e authored by uhensler's avatar uhensler
Browse files

OO-4300: Show every user only once in the list

parent 410e2332
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,7 @@ import java.util.ArrayList; ...@@ -24,6 +24,7 @@ import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors;
import org.olat.basesecurity.BaseSecurity; import org.olat.basesecurity.BaseSecurity;
import org.olat.basesecurity.BaseSecurityModule; import org.olat.basesecurity.BaseSecurityModule;
...@@ -164,6 +165,7 @@ public class LearningPathIdentityListController extends FormBasicController impl ...@@ -164,6 +165,7 @@ public class LearningPathIdentityListController extends FormBasicController impl
List<Identity> coachedIdentities = coachCourseEnv.isAdmin() List<Identity> coachedIdentities = coachCourseEnv.isAdmin()
? repositoryService.getMembers(re, RepositoryEntryRelationType.all, GroupRoles.participant.name()) ? repositoryService.getMembers(re, RepositoryEntryRelationType.all, GroupRoles.participant.name())
.stream().distinct().collect(Collectors.toList())
: repositoryService.getCoachedParticipants(getIdentity(), re); : repositoryService.getCoachedParticipants(getIdentity(), re);
List<AssessmentEntry> assessmentEntries = assessmentService.loadAssessmentEntriesBySubIdent(re, subIdent); List<AssessmentEntry> assessmentEntries = assessmentService.loadAssessmentEntriesBySubIdent(re, subIdent);
......
...@@ -156,6 +156,7 @@ public class GTACoachedParticipantListController extends GTACoachedListControlle ...@@ -156,6 +156,7 @@ public class GTACoachedParticipantListController extends GTACoachedListControlle
return coachCourseEnv.isAdmin() return coachCourseEnv.isAdmin()
? repositoryService.getMembers(re, RepositoryEntryRelationType.all, GroupRoles.participant.name()) ? repositoryService.getMembers(re, RepositoryEntryRelationType.all, GroupRoles.participant.name())
.stream().distinct().collect(Collectors.toList())
: repositoryService.getCoachedParticipants(getIdentity(), re); : repositoryService.getCoachedParticipants(getIdentity(), re);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment