change user_id to String + add updateRoleEvent
This commit is contained in:
@ -2,13 +2,11 @@ package mops.gruppen2.events;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Getter
|
||||
public class AddUser extends Event{
|
||||
String vorname, nachname, email;
|
||||
|
||||
public AddUser(long id, long gruppe_id, long user_id, String vorname, String nachname, String email) {
|
||||
public AddUser(long id, long gruppe_id, String user_id, String vorname, String nachname, String email) {
|
||||
super(id, gruppe_id, user_id);
|
||||
this.vorname = vorname;
|
||||
this.nachname = nachname;
|
||||
|
||||
Reference in New Issue
Block a user