chore: Drop duplicate event method

This particular definition was chosen since there was no corresponding
subscribe method with the same key generation logic
This commit is contained in:
Gavin D'souza 2022-11-14 18:02:47 +05:30
parent 54bf617d09
commit e97994f211

View file

@ -41,7 +41,6 @@ io.use((socket, next) => {
sid: socket.sid,
})
.then((res) => {
console.log(`User ${res.body.message.user} found`);
socket.user = res.body.message.user;
socket.user_type = res.body.message.user_type;
})