Merge remote-tracking branch 'upstream/main' into 3061

This commit is contained in:
Mark H. Wood
2021-09-08 15:52:33 -04:00
77 changed files with 4340 additions and 459 deletions

View File

@@ -287,6 +287,8 @@ public class CommunityServiceImpl extends DSpaceObjectServiceImpl<Community> imp
// register this as the admin group
community.setAdmins(admins);
context.addEvent(new Event(Event.MODIFY, Constants.COMMUNITY, community.getID(),
null, getIdentifiers(context, community)));
return admins;
}
@@ -302,6 +304,8 @@ public class CommunityServiceImpl extends DSpaceObjectServiceImpl<Community> imp
// Remove the link to the community table.
community.setAdmins(null);
context.addEvent(new Event(Event.MODIFY, Constants.COMMUNITY, community.getID(),
null, getIdentifiers(context, community)));
}
@Override