Mercurial > libervia-web
comparison libervia/web/server/restricted_bridge.py @ 1624:fd421f1be8f5 default tip
browser (blog): blog redesign first draft:
Redesign the blog in the same spirit as the chat, with a left panel to search/open new
blogs, so there is no "selection" page anymore.
Reactions are now managed.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 21 May 2025 15:58:56 +0200 |
parents | a2cd4222c702 |
children |
comparison
equal
deleted
inserted
replaced
1623:fdb5689fb826 | 1624:fd421f1be8f5 |
---|---|
363 self.no_service_profile(profile) | 363 self.no_service_profile(profile) |
364 return await self.host.bridge_call( | 364 return await self.host.bridge_call( |
365 "jid_search", search_term, options_s, profile | 365 "jid_search", search_term, options_s, profile |
366 ) | 366 ) |
367 | 367 |
368 async def ps_attachments_get( | |
369 self, service_s: str, node: str, item: str, senders_s: list[str], extra_s: str, | |
370 profile: str | |
371 ) -> None: | |
372 return await self.host.bridge_call( | |
373 "ps_attachments_get", service_s, node, item, senders_s, extra_s, profile | |
374 ) | |
375 | |
376 async def ps_attachments_set( | |
377 self, attachments_s: str, profile: str | |
378 ) -> None: | |
379 self.no_service_profile(profile) | |
380 return await self.host.bridge_call( | |
381 "ps_attachments_set", attachments_s, profile | |
382 ) | |
383 | |
368 async def remote_control_start( | 384 async def remote_control_start( |
369 self, peer_jid_s: str, extra_s: str, profile: str | 385 self, peer_jid_s: str, extra_s: str, profile: str |
370 ) -> None: | 386 ) -> None: |
371 self.no_service_profile(profile) | 387 self.no_service_profile(profile) |
372 return await self.host.bridge_call( | 388 return await self.host.bridge_call( |