diff libervia/web/server/restricted_bridge.py @ 1604:4a9679369856

browser (call): implements group calls: rel 430
author Goffi <goffi@goffi.org>
date Wed, 15 May 2024 17:40:33 +0200
parents 6feac4a25e60
children
line wrap: on
line diff
--- a/libervia/web/server/restricted_bridge.py	Sat May 11 14:02:54 2024 +0200
+++ b/libervia/web/server/restricted_bridge.py	Wed May 15 17:40:33 2024 +0200
@@ -91,6 +91,28 @@
             "call_end", session_id, call_data, profile
         )
 
+    async def call_group_data_set(
+        self,
+        room_jid_s: str,
+        call_data_s: str,
+        profile: str
+    ) -> str:
+        self.no_service_profile(profile)
+        return await self.host.bridge_call(
+            "call_group_data_set", room_jid_s, call_data_s, profile
+        )
+
+    async def call_group_start(
+        self,
+        entities: list[str],
+        extra_s: str,
+        profile: str
+    ) -> str:
+        self.no_service_profile(profile)
+        return await self.host.bridge_call(
+            "call_group_start", entities, extra_s, profile
+        )
+
     async def contacts_get(self, profile):
         return await self.host.bridge_call("contacts_get", profile)