feat(api): Implemented session closed and kick event via websocket

This commit is contained in:
2025-11-26 15:53:34 +01:00
parent 576e5af87e
commit 551938bcd3
14 changed files with 253 additions and 20 deletions

View File

@@ -0,0 +1,12 @@
package events
import de.knockoutwhist.utils.events.SimpleEvent
import model.users.User
import java.util.UUID
abstract class UserEvent(user: User) extends SimpleEvent {
def userId: UUID = user.id
}