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

OO-4450: public group's calendar events visible in course calendar too

parent c6e9f3ee
No related branches found
No related tags found
No related merge requests found
...@@ -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);
} }
......
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