Browse Source

Merge branch '20241106_lj_chat' into dev

AI 2 months ago
parent
commit
1a1a77d428
2 changed files with 6 additions and 0 deletions
  1. 4 0
      app/JsonRpc/ChatService.php
  2. 2 0
      app/JsonRpc/ChatServiceInterface.php

+ 4 - 0
app/JsonRpc/ChatService.php

@@ -196,4 +196,8 @@ class ChatService extends AbstractServiceClient implements ChatServiceInterface
     {
     {
         return $this->__request(__FUNCTION__, $data);
         return $this->__request(__FUNCTION__, $data);
     }
     }
+    public function applyTopic(array $data)
+    {
+        return $this->__request(__FUNCTION__, $data);
+    } 
 }
 }

+ 2 - 0
app/JsonRpc/ChatServiceInterface.php

@@ -49,4 +49,6 @@ interface ChatServiceInterface
     public function delAllReply(array $data);
     public function delAllReply(array $data);
     public function getTopicsListAdmin(array $data);
     public function getTopicsListAdmin(array $data);
 
 
+    public function applyTopic(array $data);
+
 }
 }