Skip to content
Snippets Groups Projects
Commit 5bbb5358 authored by Erik Johnston's avatar Erik Johnston
Browse files

raise NotImplementedError

parent 26451a09
No related branches found
No related tags found
No related merge requests found
......@@ -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, {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment