rooms now change properly in home

This commit is contained in:
hugogogo
2023-01-09 16:10:37 +01:00
parent 94ec37b847
commit e71e555ea4
8 changed files with 276 additions and 261 deletions

View File

@@ -1,5 +1,6 @@
import { Controller, UseGuards, HttpException, HttpStatus, Get, Post, Body, Req, Res } from '@nestjs/common';
import { AuthenticateGuard, TwoFactorGuard } from 'src/auth/42/guards/42guards';
import { ConnectedSocket } from '@nestjs/websockets';
import { ChatService } from './chat.service';
import { User } from 'src/users/entities/user.entity';
import { createRoomDto } from './dto/createRoom.dto';