Webatrice: Adding joined game to persistence layer (#5068)

* Adding joined game to persistence layer

* Linting fixes
This commit is contained in:
Joseph Insalaco 2024-06-26 22:06:47 -04:00 committed by GitHub
parent 1ab723ca64
commit ea8da24215
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 63 additions and 12 deletions

View file

@ -51,4 +51,8 @@ export const Dispatch = {
gameCreated: (roomId) => {
store.dispatch(Actions.gameCreated(roomId));
},
joinedGame: (roomId, gameId) => {
store.dispatch(Actions.joinedGame(roomId, gameId));
}
}