Adding remove messages to persistence layer (#5066)

This commit is contained in:
Joseph Insalaco 2024-06-26 20:44:40 -04:00 committed by GitHub
parent 8687163cca
commit f8bc6cf998
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 54 additions and 4 deletions

View file

@ -50,7 +50,7 @@ export class RoomPersistence {
}
static removeMessages(roomId: number, name: string, amount: number): void {
console.log('removeMessages', roomId, name, amount);
RoomsDispatch.removeMessages(roomId, name, amount);
};
static gameCreated(roomId: number) {