temporarily disable tests + rough change from groupid to uuid + remove invitelink old system
This commit is contained in:
@ -7,6 +7,8 @@ import mops.gruppen2.domain.Group;
|
||||
import mops.gruppen2.domain.Role;
|
||||
import mops.gruppen2.domain.exception.UserNotFoundException;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* Aktualisiert die Gruppenrolle eines Teilnehmers.
|
||||
*/
|
||||
@ -17,7 +19,7 @@ public class UpdateRoleEvent extends Event {
|
||||
|
||||
private Role newRole;
|
||||
|
||||
public UpdateRoleEvent(Long groupId, String userId, Role newRole) {
|
||||
public UpdateRoleEvent(UUID groupId, String userId, Role newRole) {
|
||||
super(groupId, userId);
|
||||
this.newRole = newRole;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user