raise NotImplementedError

pull/2363/head
Erik Johnston 2017-07-13 10:25:29 +01:00
parent 26451a09eb
commit 5bbb53580a
1 changed files with 2 additions and 5 deletions

View File

@ -463,9 +463,7 @@ class GroupsServerHandler(object):
}
if self.hs.is_mine_id(user_id):
groups_local = self.hs.get_groups_local_handler()
res = yield groups_local.on_invite(group_id, user_id, content)
local_attestation = None
raise NotImplementedError()
else:
local_attestation = self.attestations.create_attestation(group_id, user_id)
content.update({
@ -593,8 +591,7 @@ class GroupsServerHandler(object):
if is_kick:
if self.hs.is_mine_id(user_id):
groups_local = self.hs.get_groups_local_handler()
yield groups_local.user_removed_from_group(group_id, user_id, {})
raise NotImplementedError()
else:
yield self.transport_client.remove_user_from_group_notification(
get_domain_from_id(user_id), group_id, user_id, {}