diff 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
line wrap: on
line diff
--- a/libervia/server/restricted_bridge.py	Fri Aug 14 09:31:32 2020 +0200
+++ b/libervia/server/restricted_bridge.py	Fri Aug 14 09:31:32 2020 +0200
@@ -78,7 +78,10 @@
             "FISAffiliationsSet", service_s, namespace, path, affiliations, profile
         )
 
-    async def invitationSimpleCreate(self, invitee_email, url_template, extra_s, profile):
+    async def invitationSimpleCreate(
+        self, invitee_email, invitee_name, url_template, extra_s, profile
+    ):
         return await self.host.bridgeCall(
-            "invitationSimpleCreate", invitee_email, url_template, extra_s, profile
+            "invitationSimpleCreate", invitee_email, invitee_name, url_template, extra_s,
+            profile
         )