1

merged with master and fixed some problems

This commit is contained in:
[Mahgs]
2020-03-24 16:31:55 +01:00
parent 6cd41d5e29
commit 2d3e935d64
4 changed files with 22 additions and 21 deletions

View File

@ -79,7 +79,6 @@ public class ControllerService {
visibility1 = Visibility.PUBLIC;
} else {
visibility1 = Visibility.PRIVATE;
createInviteLink(groupId);
}
GroupType groupType;

View File

@ -49,7 +49,7 @@ public class UserService {
List<Event> events = groupService.getGroupEvents(groupIds);
return groupService.projectEventList(events).get(0);
} catch (IndexOutOfBoundsException e) {
throw new GroupNotFoundException(this.getClass().toString());
throw new GroupNotFoundException("@UserService");
}
}
}