no message

This commit is contained in:
hellcat 2025-03-25 19:53:12 +08:00
parent 2451431caf
commit 0234781931

View File

@ -161,9 +161,9 @@ final class HookController
} }
// 节点一览 // 节点一览
if (strpos($sText, '/node_all') === 0) { if (strpos($sText, '/nodeAll') === 0) {
$aNodeAll = Node::orderBy("name")->all()->toArray(); $aNodeAll = Node::orderBy("name")->get()->toArray();
$sMsg = ''; $sMsg = '';
@ -234,7 +234,7 @@ final class HookController
} }
// 工单查找 // 工单查找
if (strpos($sText, '/ticket_find') === 0) { if (strpos($sText, '/ticketFind') === 0) {
$iTicketId = $this->trimText($sText, '/ticket_find'); $iTicketId = $this->trimText($sText, '/ticket_find');