mirror of
https://github.com/openmax-server/server.git
synced 2026-05-22 19:41:41 +03:00
oops
This commit is contained in:
@@ -3,7 +3,6 @@ from .auth import AuthProcessors
|
||||
from .search import SearchProcessors
|
||||
from .history import HistoryProcessors
|
||||
from .assets import AssetsProcessors
|
||||
from .calls import CallsProcessors
|
||||
from .chats import ChatsProcessors
|
||||
from .contacts import ContactsProcessors
|
||||
from .messages import MessagesProcessors
|
||||
@@ -14,7 +13,6 @@ class Processors(MainProcessors,
|
||||
SearchProcessors,
|
||||
HistoryProcessors,
|
||||
AssetsProcessors,
|
||||
CallsProcessors,
|
||||
ChatsProcessors,
|
||||
ContactsProcessors,
|
||||
MessagesProcessors,
|
||||
|
||||
@@ -150,10 +150,6 @@ class TamTamMobile:
|
||||
await self.auth_required(
|
||||
userPhone, self.processors.chat_info, payload, seq, writer, userId
|
||||
)
|
||||
case self.opcodes.OK_TOKEN:
|
||||
await self.auth_required(
|
||||
userPhone, self.processors.ok_token, payload, seq, writer
|
||||
)
|
||||
case self.opcodes.CONTACT_LIST:
|
||||
await self.auth_required(
|
||||
userPhone, self.processors.contact_list, payload, seq, writer, userId
|
||||
|
||||
@@ -136,10 +136,6 @@ class TamTamWS:
|
||||
await self.auth_required(
|
||||
userPhone, self.processors.chat_info, payload, seq, websocket, userId
|
||||
)
|
||||
case self.opcodes.OK_TOKEN:
|
||||
await self.auth_required(
|
||||
userPhone, self.processors.ok_token, payload, seq, websocket
|
||||
)
|
||||
case self.opcodes.CONTACT_LIST:
|
||||
await self.auth_required(
|
||||
userPhone, self.processors.contact_list, payload, seq, websocket, userId
|
||||
|
||||
Reference in New Issue
Block a user