Fix : add userID to ReadUserDto

This commit is contained in:
2024-06-13 10:02:32 -04:00
parent 7d17e4f797
commit a19a7efc93
4 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ export class GamesController {
@Param('id', GamePipe) _game: Document<Game> & Game,
): Observable<{ data: string }> {
return fromEvent(this.eventEmitter, 'sse.game.' + id).pipe(
map((payload) => {
map((payload: any) => {
return {
data: JSON.stringify(payload),
};