comparison libervia/web/server/restricted_bridge.py @ 1593:c6976c5b85a1

browser (chat/select): add bookmarked entities on empty search
author Goffi <goffi@goffi.org>
date Mon, 11 Dec 2023 00:43:06 +0100
parents 9fc4120888be
children 7941444c1671
comparison
equal deleted inserted replaced
1592:291a7026cb2b 1593:c6976c5b85a1
43 self, callback_id: str, data_s: str, profile: str 43 self, callback_id: str, data_s: str, profile: str
44 ) -> str: 44 ) -> str:
45 self.no_service_profile(profile) 45 self.no_service_profile(profile)
46 return await self.host.bridge_call( 46 return await self.host.bridge_call(
47 "action_launch", callback_id, data_s, profile 47 "action_launch", callback_id, data_s, profile
48 )
49
50 async def bookmarks_list(
51 self,
52 type_: str,
53 storage_location: str,
54 profile: str
55 ):
56 self.no_service_profile(profile)
57 return await self.host.bridge_call(
58 "bookmarks_list", type_, storage_location, profile
48 ) 59 )
49 60
50 async def call_start(self, entity: str, call_data_s: str, profile: str) -> None: 61 async def call_start(self, entity: str, call_data_s: str, profile: str) -> None:
51 self.no_service_profile(profile) 62 self.no_service_profile(profile)
52 return await self.host.bridge_call( 63 return await self.host.bridge_call(