|
@@ -12,7 +12,7 @@ from typing import List
|
|
from concurrent.futures import ThreadPoolExecutor
|
|
from concurrent.futures import ThreadPoolExecutor
|
|
from core.SystemdKiller import SystemdKiller
|
|
from core.SystemdKiller import SystemdKiller
|
|
from core.utils import get_init_data
|
|
from core.utils import get_init_data
|
|
-
|
|
|
|
|
|
+from jsonAndRequest import requestGetListUser
|
|
botname = "open_access_request_pending"
|
|
botname = "open_access_request_pending"
|
|
operating_status = 320
|
|
operating_status = 320
|
|
|
|
|
|
@@ -117,8 +117,10 @@ def processing(ticket: Ticket) -> None:
|
|
|
|
|
|
message = f"Тикет {ticket.id} ожидает решения"
|
|
message = f"Тикет {ticket.id} ожидает решения"
|
|
|
|
|
|
- send_notification_to_admins(ticket, message)
|
|
|
|
- bot.send_message(ticket.assigned_to, message)
|
|
|
|
|
|
+ print(requestGetListUser())
|
|
|
|
+
|
|
|
|
+ # send_notification_to_admins(ticket, message)
|
|
|
|
+ # bot.send_message(ticket.assigned_to, message)
|
|
|
|
|
|
logging.debug(f"Конец обработки тикета {ticket.id}")
|
|
logging.debug(f"Конец обработки тикета {ticket.id}")
|
|
|
|
|