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

OO-1947: you cannot be in a group if you are null

parent 966a02b4
No related branches found
No related tags found
No related merge requests found
...@@ -242,6 +242,8 @@ public class PersistingCourseGroupManager extends BasicManager implements Course ...@@ -242,6 +242,8 @@ public class PersistingCourseGroupManager extends BasicManager implements Course
*/ */
@Override @Override
public List<BusinessGroup> getOwnedBusinessGroups(Identity identity) { public List<BusinessGroup> getOwnedBusinessGroups(Identity identity) {
if(identity == null) return new ArrayList<>();
SearchBusinessGroupParams params = new SearchBusinessGroupParams(identity, true, false); SearchBusinessGroupParams params = new SearchBusinessGroupParams(identity, true, false);
List<BusinessGroup> allGroups = List<BusinessGroup> allGroups =
businessGroupService.findBusinessGroups(params, getCourseEntry(), 0, -1); businessGroupService.findBusinessGroups(params, getCourseEntry(), 0, -1);
...@@ -253,6 +255,8 @@ public class PersistingCourseGroupManager extends BasicManager implements Course ...@@ -253,6 +255,8 @@ public class PersistingCourseGroupManager extends BasicManager implements Course
*/ */
@Override @Override
public List<BusinessGroup> getParticipatingBusinessGroups(Identity identity) { public List<BusinessGroup> getParticipatingBusinessGroups(Identity identity) {
if(identity == null) return new ArrayList<>();
SearchBusinessGroupParams params = new SearchBusinessGroupParams(identity, false, true); SearchBusinessGroupParams params = new SearchBusinessGroupParams(identity, false, true);
List<BusinessGroup> allGroups = List<BusinessGroup> allGroups =
businessGroupService.findBusinessGroups(params, getCourseEntry(), 0, -1); businessGroupService.findBusinessGroups(params, getCourseEntry(), 0, -1);
......
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