0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-04 10:18:52 +02:00

Remove user from group summary when the leave the group

This commit is contained in:
Erik Johnston 2017-09-21 16:09:57 +01:00
parent bb746a9de1
commit e1dec2f1a7

View file

@ -822,6 +822,14 @@ class GroupServerStore(SQLBaseStore):
"user_id": user_id,
},
)
self._simple_delete_txn(
txn,
table="group_summary_users",
keyvalues={
"group_id": group_id,
"user_id": user_id,
},
)
return self.runInteraction("remove_user_from_group", _remove_user_from_group_txn)
def add_room_to_group(self, group_id, room_id, is_public):