ソースを参照

Merge branch '20241106_lj_chat' into dev

AI 2 ヶ月 前
コミット
1a1a77d428
2 ファイル変更6 行追加0 行削除
  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);
     }
+    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 getTopicsListAdmin(array $data);
 
+    public function applyTopic(array $data);
+
 }