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
8c760288
Commit
8c760288
authored
5 years ago
by
srosse
Browse files
Options
Downloads
Patches
Plain Diff
OO-4450: public group's calendar events visible in course calendar too
parent
c6e9f3ee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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/cal/CourseCalendars.java
+5
-7
5 additions, 7 deletions
src/main/java/org/olat/course/nodes/cal/CourseCalendars.java
with
5 additions
and
7 deletions
src/main/java/org/olat/course/nodes/cal/CourseCalendars.java
+
5
−
7
View file @
8c760288
...
@@ -145,13 +145,11 @@ public class CourseCalendars {
...
@@ -145,13 +145,11 @@ public class CourseCalendars {
// learning groups
// learning groups
List
<
BusinessGroup
>
ownerGroups
=
cgm
.
getOwnedBusinessGroups
(
identity
);
List
<
BusinessGroup
>
ownerGroups
=
cgm
.
getOwnedBusinessGroups
(
identity
);
addCalendars
(
ureq
,
userCourseEnv
,
ownerGroups
,
!
readOnly
,
clpc
,
calendars
);
addCalendars
(
ureq
,
userCourseEnv
,
ownerGroups
,
!
readOnly
,
clpc
,
calendars
);
List
<
BusinessGroup
>
attendedGroups
=
cgm
.
getParticipatingBusinessGroups
(
identity
);
// always add all group calendars in this course no matter if the identity is a member
for
(
BusinessGroup
ownerGroup
:
ownerGroups
)
{
// as public entries should be visible anyway
if
(
attendedGroups
.
contains
(
ownerGroup
))
{
List
<
BusinessGroup
>
allGroups
=
cgm
.
getAllBusinessGroups
();
attendedGroups
.
remove
(
ownerGroup
);
allGroups
.
removeAll
(
ownerGroups
);
}
addCalendars
(
ureq
,
userCourseEnv
,
allGroups
,
false
,
clpc
,
calendars
);
}
addCalendars
(
ureq
,
userCourseEnv
,
attendedGroups
,
false
,
clpc
,
calendars
);
}
}
return
new
CourseCalendars
(
courseKalendarWrapper
,
calendars
);
return
new
CourseCalendars
(
courseKalendarWrapper
,
calendars
);
}
}
...
...
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