summaryrefslogtreecommitdiff
path: root/server/app.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/app.module.ts')
-rw-r--r--server/app.module.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/app.module.ts b/server/app.module.ts
index 5fc4654..60cf865 100644
--- a/server/app.module.ts
+++ b/server/app.module.ts
@@ -5,7 +5,7 @@ import { AppController } from './app.controller';
import { config } from './database/config';
import { ChatRoomModule } from './modules/chat_room.module';
import { UsersModule } from './modules/users.module';
-import { PingGateway } from './providers/gateways/ping.gateway';
+import { ChatRoomGateway } from './providers/gateways/chat_room.gateway';
import { AuthGuard } from './providers/guards/auth.guard';
import { RolesGuard } from './providers/guards/roles.guard';
import { ChatRoomService } from './providers/services/chat_room.service';
@@ -18,7 +18,7 @@ import { GuardUtil } from './providers/util/guard.util';
imports: [TypeOrmModule.forRoot(config), UsersModule, ChatRoomModule],
controllers: [AppController],
providers: [
- PingGateway,
+ ChatRoomGateway,
UsersService,
RolesService,
JwtService,