Skip to content
Snippets Groups Projects
Commit ee04a3b4 authored by srosse's avatar srosse
Browse files

OO-3800: add role deduplication if dedup is disabled in member list

parent e8b769b1
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ public class MembersPeekViewController extends BasicController {
MembersCourseNodeConfiguration nodeConfig = (MembersCourseNodeConfiguration)CourseNodeFactory.getInstance().getCourseNodeConfiguration("cmembers");
boolean deduplicateList = nodeConfig.isDeduplicateList();
Predicate<Identity> deduplicatCatch = deduplicateList ? new Deduplicate() : new All();
Predicate<Identity> deduplicatCatch = new Deduplicate();
if(withOwners) {
List<Identity> filteredOwners = owners.stream()
.filter(deduplicatCatch)
......@@ -149,6 +149,9 @@ public class MembersPeekViewController extends BasicController {
}
if(withCoaches) {
if(!deduplicateList) {
deduplicatCatch = new Deduplicate();
}
List<Identity> filteredCoaches = coaches.stream()
.filter(deduplicatCatch)
.collect(Collectors.toList());
......@@ -156,6 +159,9 @@ public class MembersPeekViewController extends BasicController {
}
if(withParticipants) {
if(!deduplicateList) {
deduplicatCatch = new Deduplicate();
}
List<Identity> filteredParticipants = participants.stream()
.filter(deduplicatCatch)
.collect(Collectors.toList());
......@@ -195,11 +201,4 @@ public class MembersPeekViewController extends BasicController {
return true;
}
}
private static class All implements Predicate<Identity> {
@Override
public boolean test(Identity t) {
return true;
}
}
}
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