Suppress lint errors
parent
15fd272ce3
commit
d7d04929d5
|
@ -25,10 +25,12 @@ export class AppGateway
|
|||
|
||||
constructor(private appService: AppService) {}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
afterInit(server: Server) {
|
||||
this.logger.log('Initialized...');
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any,@typescript-eslint/no-unused-vars
|
||||
handleConnection(client: Socket, ...args: any[]) {
|
||||
this.logger.log(`Client connected: ${client.id}`);
|
||||
client.emit(MESSAGE_TO_CLIENT, this.appService.getMessages());
|
||||
|
|
Loading…
Reference in New Issue