From 633214e2b6b0f4a5fea74caa8f135115da1961d1 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Tue, 10 Aug 2010 12:18:29 +0000 Subject: Call the new invite method in ActivityService InviteCommand and keep a stub for Invite --- diff --git a/src/sugar/activity/activityservice.py b/src/sugar/activity/activityservice.py index d7a31ad..bdce898 100644 --- a/src/sugar/activity/activityservice.py +++ b/src/sugar/activity/activityservice.py @@ -67,10 +67,14 @@ class ActivityService(dbus.service.Object): self._activity.props.active = active @dbus.service.method(_ACTIVITY_INTERFACE) - def Invite(self, account_path, contact_id): + def InviteContact(self, account_path, contact_id): self._activity.invite(account_path, contact_id) @dbus.service.method(_ACTIVITY_INTERFACE) + def Invite(self, buddy_key): + raise NotImplementedError + + @dbus.service.method(_ACTIVITY_INTERFACE) def HandleViewSource(self): self._activity.handle_view_source() -- cgit v0.9.1