Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
ee04a3b4
Commit
ee04a3b4
authored
6 years ago
by
srosse
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/olat/course/nodes/members/MembersPeekViewController.java
+7
-8
7 additions, 8 deletions
.../olat/course/nodes/members/MembersPeekViewController.java
with
7 additions
and
8 deletions
src/main/java/org/olat/course/nodes/members/MembersPeekViewController.java
+
7
−
8
View file @
ee04a3b4
...
...
@@ -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
;
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment