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