1
Co-authored-by: Christoph <tobi@urpost.de>
This commit is contained in:
Christoph
2020-03-26 21:19:59 +01:00
parent b37f2349aa
commit 02e7bcbcc4
7 changed files with 17 additions and 16 deletions

View File

@ -41,6 +41,10 @@ public class UserService {
return newGroups;
}
public List<Group> getUserGroups(String userId) throws EventException {
return getUserGroups(new User(userId, null, null, null));
}
public Group getGroupById(UUID groupId) throws EventException {
List<UUID> groupIds = new ArrayList<>();
groupIds.add(groupId);