diff options
author | Richard van der Hoff <richard@matrix.org> | 2019-05-14 18:53:09 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2019-05-14 18:53:09 +0100 |
commit | daa2fb63179345b993f213f126d9f7bc019f3281 (patch) | |
tree | e8b77180ebfb56937f012351d68f87a2d6bbcb48 /synapse/util | |
parent | Migrate all tests to use the dict-based config format instead of hanging item... (diff) | |
download | synapse-daa2fb63179345b993f213f126d9f7bc019f3281.tar.xz |
comment about user_joined_room
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/distributor.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/util/distributor.py b/synapse/util/distributor.py index 194da87639..e14c8bdfda 100644 --- a/synapse/util/distributor.py +++ b/synapse/util/distributor.py @@ -27,6 +27,7 @@ def user_left_room(distributor, user, room_id): distributor.fire("user_left_room", user=user, room_id=room_id) +# XXX: this is no longer used. We should probably kill it. def user_joined_room(distributor, user, room_id): distributor.fire("user_joined_room", user=user, room_id=room_id) |