Mercurial > libervia-web
comparison libervia/server/restricted_bridge.py @ 1331:fe353fceec38
browser (invitation, photos/album): invitation manager improvments:
invitation manager has been moved to a separated module, it is generic so it can be used
with other activities.
It has been simplified, and contact to add are dynamically filtered using a text input.
Invitation are done by email using a the new modal.
New notification module is used to indicate when invitation has been done.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 14 Aug 2020 09:31:32 +0200 |
parents | ed28ad7d484c |
children | a32f3f47e4a8 |
comparison
equal
deleted
inserted
replaced
1330:b525fdcb393b | 1331:fe353fceec38 |
---|---|
76 ): | 76 ): |
77 return await self.host.bridgeCall( | 77 return await self.host.bridgeCall( |
78 "FISAffiliationsSet", service_s, namespace, path, affiliations, profile | 78 "FISAffiliationsSet", service_s, namespace, path, affiliations, profile |
79 ) | 79 ) |
80 | 80 |
81 async def invitationSimpleCreate(self, invitee_email, url_template, extra_s, profile): | 81 async def invitationSimpleCreate( |
82 self, invitee_email, invitee_name, url_template, extra_s, profile | |
83 ): | |
82 return await self.host.bridgeCall( | 84 return await self.host.bridgeCall( |
83 "invitationSimpleCreate", invitee_email, url_template, extra_s, profile | 85 "invitationSimpleCreate", invitee_email, invitee_name, url_template, extra_s, |
86 profile | |
84 ) | 87 ) |